function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['BIOGEOGRAPHIA-Lav. Soc. ital. Biogeoqr. N. S.', 2], ['Biodiversity Data Journal', 2], ['Caucasiana', 1], ['Check List', 3], ['Deterville', 1], ['Far Eastern Entomologist', 1], ['Insecta Mundi', 5], ['International Journal of Myriapodology', 2], ['Journal of Natural History', 1], ['Revue suisse de Zoologie', 7], ['ZooKeys', 4], ['Zoological Journal of the Linnean Society', 2], ['Zoologische Jahrbücher, Abteilung für Systematik', 1], ['Zoosystematics and Evolution', 58], ['Zootaxa', 33], ['Other (1)', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=124)', 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);