function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Arthropod Systematics & amp; Phylogeny', 7], ['Biodiversity Data Journal', 204], ['Birkhaeuser Verlag', 7], ['Bulletin de la Société Entomologique de France', 8], ['European Journal of Taxonomy', 13], ['Far Eastern Entomologist', 9], ['Journal of Natural History', 19], ['Journal of Orthoptera Research', 72], ['Linzer biologische Beiträge', 17], ['Mittheilungen der Schweizer Entomologischen Gessellschaft', 10], ['Records of the Australian Museum', 11], ['Revue suisse de Zoologie', 37], ['ZooKeys', 113], ['Zoosystema', 82], ['Zootaxa', 647], ['Other (27)', 65] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=1321)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 16, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);