function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Abhandlungen der Senckenbergischen Naturforschenden Gesellschaft', 3], ['Annals and Magazine of Natural History, Including Zoology, Botany and Geology, Being a Continuation of the \' Magazine of Botany ', 2], ['Biodiversity Data Journal', 6], ['Bulletin de la Société Impériale des Naturalistes de Moscou', 3], ['European Journal of Taxonomy', 5], ['Iheringia, Série Zoologia', 4], ['Insecta Mundi', 28], ['International Journal of Myriapodology', 5], ['Papéis Avulsos de Zoologia', 4], ['Revue suisse de Zoologie', 103], ['Tropical Zoology', 10], ['ZooKeys', 76], ['Zoosystema', 3], ['Zoosystematics and Evolution', 4], ['Zootaxa', 119], ['Other (5)', 7] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=382)', 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);