function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acta Entomologica Musei Nationalis Pragae', 2], ['Beiträge Zur Entomologie = Contributions to Entomology', 21], ['Biodiversity Data Journal', 43], ['Insects of Guam II', 3], ['Journal of Hymenoptera Research', 4], ['Journal of Natural History', 7], ['Linzer biologische Beiträge', 52], ['Pan-Pac Ent', 1], ['Proc Linn Soc N S W', 1], ['Proceedings of the Entomological Society of Washington', 1], ['Proceedings of the Hawaiian Entomological Society', 2], ['Proceedings of the United States National Museum, 3', 1], ['Transactions of the Entomological Society of London', 1], ['ZooKeys', 247], ['Zootaxa', 206] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=592)', 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);