function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acta Entomologica Musei Nationalis Pragae', 7], ['Acta Societatis Scientiarum Fennicae', 10], ['Biodiversity Data Journal', 41], ['British Museum', 90], ['Fauna Entomologica Scandinavica', 12], ['Journal of the Proceedings of the Linnean Society of London, Zoology', 20], ['Madras Journal of Literature and Science', 8], ['Memoirs of the American Entomological Institute', 6], ['Proceedings of the Institute of Zoology', 12], ['Revue suisse de Zoologie', 8], ['Unknown Publisher', 17], ['Yezhegodnik Zoologicheskogo Muzeya Imperatorskoi Akademii Nauk', 6], ['ZooKeys', 92], ['Zoosystema', 10], ['Zootaxa', 22], ['Other (17)', 25] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=386)', 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);