function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['African Invertebrates', 46], ['Annals and Magazine of Natural History, Including Zoology, Botany and Geology, Being a Continuation of the \' Magazine of Botany ', 19], ['Ballière', 343], ['Biodiversity Data Journal', 1190], ['British Museum', 18], ['European Journal of Taxonomy', 26], ['Far Eastern Entomologist', 69], ['Journal of Hymenoptera Research', 30], ['Journal of Natural History', 155], ['Laurentius Salvius', 70], ['Linzer biologische Beiträge', 62], ['Taxonomic Monographs on Neotropical Hymenoptera', 391], ['ZooKeys', 282], ['Zoological Journal of the Linnean Society', 15], ['Zootaxa', 725], ['Other (61)', 175] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=3616)', 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);