function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acta Entomologica Musei Nationalis Pragae', 34], ['Amurian Zoological Journal', 1], ['Annals and Magazine of Natural History, Including Zoology, Botany and Geology, Being a Continuation of the \' Magazine of Botany ', 13], ['Annals of the Carnegie Museum', 1], ['Beiträge Zur Entomologie = Contributions to Entomology', 16], ['Biodiversity Data Journal', 2], ['Bulletin of the American Museum of Natural History', 2], ['Bulletin of the National Science Museum, Series A (Zoology)', 24], ['Caucasian Entomological Bulletin', 2], ['Deutsche Entomologische Zeitschrift', 30], ['European Journal of Taxonomy', 38], ['Japanese Journal of Systematic Entomology', 4], ['Linzer biologische Beiträge', 144], ['ZooKeys', 23], ['Zootaxa', 73], ['Other (3)', 3] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=410)', 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);