function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acta Ichthyologica et Piscatoria', 2], ['Annals and Magazine of Natural History, Including Zoology, Botany and Geology, Being a Continuation of the \' Magazine of Botany ', 1], ['Bulletin de la Société Philomathique de Paris, Série 7', 1], ['Bulletin of the Scripps Institution of Oceanography of the University of California', 2], ['Calcutta Journal of Natural History, and Miscellany of the Arts and Sciences in India', 1], ['Comptes Rendus de l’Academie des Sciences de Paris, 3', 1], ['Cybium', 3], ['Doklady Akademii Nauk SSSR', 1], ['Doklady Akademiia Nauk SSSR', 1], ['Proceedings of the Academy of Natural Sciences of Philadelphia', 2], ['Proceedings of the California Academy of Sciences, Series 1', 3], ['Report of the British Association for the Advancement of Science', 2], ['Sitzungsberichte der Gesellschaft Naturforschender Freunde zu Berlin', 5], ['The Pacific', 3], ['Zootaxa', 76], ['Other (16)', 16] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=120)', 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);