function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annals and Magazine of Natural History, Including Zoology, Botany and Geology, Being a Continuation of the \' Magazine of Botany ', 1], ['BIOGEOGRAPHIA-Lav. Soc. ital. Biogeoqr. N. S.', 4], ['Biodiversity Data Journal', 2], ['Check List', 1], ['Insecta Mundi', 18], ['International Journal of Myriapodology', 2], ['Journal of Natural History', 26], ['Journal of the Academy of Natural Sciences of Philadelphia', 2], ['Laurentius Salvius', 10], ['Proceedings of the Academy of Natural Sciences of Philadelphia', 19], ['Raffles Bulletin of Zoology', 2], ['Revue suisse de Zoologie', 26], ['VERLAG VON LEOPOLD VOSS, BUCHHAENDLER D. K. ACADEHIE D. WISSENSCHAFTEN ZU ST. PETERSBURG', 2], ['ZooKeys', 33], ['Zootaxa', 337], ['Other (4)', 4] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=489)', 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);