function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['BIOGEOGRAPHIA-Lav. Soc. ital. Biogeoqr. N. S.', 4], ['Biodiversity Data Journal', 2], ['Caucasiana', 2], ['Far Eastern Entomologist', 1], ['Insecta Mundi', 10], ['International Journal of Myriapodology', 2], ['Journal of Natural History', 3], ['Journal of the Academy of Natural Sciences of Philadelphia', 1], ['Laurentius Salvius', 10], ['Proceedings of the Academy of Natural Sciences of Philadelphia', 19], ['Revue suisse de Zoologie', 15], ['VERLAG VON LEOPOLD VOSS, BUCHHAENDLER D. K. ACADEHIE D. WISSENSCHAFTEN ZU ST. PETERSBURG', 2], ['ZooKeys', 13], ['Zootaxa', 61] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=145)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 14, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);