function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Adansonia', 80], ['Biodiversity Data Journal', 20], ['Blumea - Biodiversity, Evolution and Biogeography of Plants', 56], ['Botanische Jahrbücher fur Systematik, Pflanzengeschichte und Pflanzengeographie.', 17], ['Candollea', 45], ['European Journal of Taxonomy', 8], ['Gardens\' Bulletin (Singapore)', 6], ['Journal of the Arnold Arboretum', 18], ['Laurentius Salvius', 9], ['Order out of Chaos. Linnaean Plant Types and their Types', 19], ['Papéis Avulsos de Zoologia', 28], ['PhytoKeys', 269], ['Phytotaxa', 248], ['Revue suisse de Zoologie', 65], ['Zootaxa', 16], ['Other (28)', 45] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=949)', 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);