function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Adansonia', 504], ['Biodiversity Data Journal', 136], ['Birkhaeuser Verlag', 113], ['Blumea - Biodiversity, Evolution and Biogeography of Plants', 156], ['Botanische Jahrbücher fur Systematik, Pflanzengeschichte und Pflanzengeographie.', 57], ['Candollea', 49], ['Denkschriften der Schweizerischen Naturforschenden Gesellschaft', 65], ['Flora Helvetica', 84], ['Info Flora Schweiz', 116], ['Laurentius Salvius', 149], ['Order out of Chaos. Linnaean Plant Types and their Types', 262], ['PhytoKeys', 129], ['Phytotaxa', 315], ['Reinwardtia', 62], ['Zootaxa', 173], ['Other (67)', 354] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=2724)', 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);