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], ['Deterville', 1], ['Far Eastern Entomologist', 1], ['Insecta Mundi', 5], ['International Journal of Myriapodology', 2], ['Journal of Natural History', 1], ['Revue suisse de Zoologie', 5], ['ZooKeys', 1], ['Zoological Journal of the Linnean Society', 2], ['Zoologische Jahrbücher, Abteilung für Systematik', 1], ['Zoosystema', 1], ['Zoosystematics and Evolution', 58], ['Zootaxa', 27] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=110)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 15, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);