function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acta Biologica Sibirica', 1], ['Amurian Zoological Journal', 17], ['Annales de la Société Scientifique de Bruxelles. Memoires', 7], ['Backhuys', 1], ['Beiträge Zur Entomologie = Contributions to Entomology', 10], ['Biodiversity Data Journal', 2], ['Entomo Helvetica', 4], ['European Journal of Taxonomy', 8], ['Far Eastern Entomologist', 4], ['Records of the Western Australian Museum Supplement', 2], ['Schulz-Wundermann', 5], ['ZooKeys', 24], ['Zoological Systematics', 6], ['Zoosystematica Rossica', 2], ['Zootaxa', 74], ['Other (6)', 6] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=173)', 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);