function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Adansonia', 13], ['Biodiversity Data Journal', 23], ['Birkhaeuser Verlag', 11], ['Blumea - Biodiversity, Evolution and Biogeography of Plants', 10], ['Botanische Jahrbücher fur Systematik, Pflanzengeschichte und Pflanzengeographie.', 4], ['Candollea', 5], ['Flora Helvetica', 8], ['Info Flora Schweiz', 14], ['Insecta Mundi', 4], ['Laurentius Salvius', 52], ['Order out of Chaos. Linnaean Plant Types and their Types', 96], ['PhytoKeys', 743], ['Phytotaxa', 77], ['Revue suisse de Zoologie', 38], ['Zootaxa', 29], ['Other (9)', 13] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=1140)', 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);