function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Bulletin of the United States National Museum', 11], ['Deterville', 1], ['Geodiversitas', 1], ['Monatsberichte der Königlich Preussischen Akademie des Wissenschaften zu Berlin', 1], ['Pacific Science', 1], ['Proceedings of the Japanese Society of Systematic Zoology', 1], ['Proceedings of the Royal Society of London', 5], ['Records of the Australian Museum', 59], ['Report on the Scientific Results of the Voyage of H. M. S. Challenger during the Years 1873 – 76, Zoology', 18], ['Systematics and Biodiversity', 6], ['Zeitschrift der Deutschen Geologischen Gesellschaft', 1], ['Zitteliana', 4], ['ZooKeys', 61], ['Zoosystema', 1], ['Zootaxa', 123] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=294)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 15, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);