function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Adansonia', 330], ['Australian Systematic Botany', 74], ['Biodiversity Data Journal', 75], ['Blumea - Biodiversity, Evolution and Biogeography of Plants', 46], ['Boissiera', 34], ['Botanische Jahrbücher fur Systematik, Pflanzengeschichte und Pflanzengeographie.', 51], ['Candollea', 61], ['Fossil Imprint', 37], ['Insecta Mundi', 56], ['Journal of the Arnold Arboretum', 81], ['Laurentius Salvius', 59], ['Order out of Chaos. Linnaean Plant Types and their Types', 153], ['PhytoKeys', 87], ['Phytotaxa', 115], ['Zootaxa', 48], ['Other (56)', 231] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=1538)', 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);