function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Biodiversity Data Journal', 1628], ['Deutsche Entomologische Zeitschrift', 115], ['European Journal of Taxonomy', 113], ['Far Eastern Entomologist', 68], ['Insecta Mundi', 288], ['Journal of Natural History', 52], ['Linzer biologische Beiträge', 1038], ['Memoirs of Museum Victoria', 131], ['PeerJ', 39], ['Raffles Bulletin of Zoology', 64], ['Tijdschrift voor Entomologie', 46], ['ZooKeys', 487], ['Zoological Journal of the Linnean Society', 35], ['Zoosystema', 24], ['Zootaxa', 3646], ['Other (52)', 204] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=7978)', 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);