function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['American Museum Novitates', 16], ['Biodiversity Data Journal', 145], ['Bulletin of the American Museum of Natural History', 5], ['Check List', 31], ['Cryptogamie, Mycologie', 28], ['European Journal of Taxonomy', 7], ['Journal of Natural History', 9], ['Linzer biologische Beiträge', 24], ['MycoKeys', 364], ['Mycological Research', 18], ['Mémoires du Muséum national d\'Histoire naturelle', 10], ['Order out of Chaos. Linnaean Plant Types and their Types', 27], ['Phytotaxa', 553], ['Records of the Australian Museum', 15], ['Zootaxa', 471], ['Other (18)', 32] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=1755)', 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);