function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acta Entomologica Musei Nationalis Pragae', 2], ['Annals and Magazine of Natural History, Including Zoology, Botany and Geology, Being a Continuation of the \' Magazine of Botany ', 3], ['Ballière', 4], ['Biodiversity Data Journal', 58], ['Bulletin B P Bishop Mus', 1], ['European Journal of Taxonomy', 51], ['Insects of Guam II', 2], ['Journal of Hymenoptera Research', 2], ['Journal of Threatened Taxa', 13], ['Linzer biologische Beiträge', 6], ['Systematic entomology', 11], ['Transactions of the Entomological Society of London', 6], ['ZooKeys', 52], ['Zoosystema', 40], ['Zootaxa', 327], ['Other (8)', 8] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=586)', 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);