function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Adansonia', 23], ['B. White, T. Cadell, & P. Elmsly', 2], ['Biodiversity Data Journal', 10], ['Birkhaeuser Verlag', 10], ['Blumea - Biodiversity, Evolution and Biogeography of Plants', 2], ['Botanische Jahrbücher fur Systematik, Pflanzengeschichte und Pflanzengeographie.', 2], ['Denkschriften der Schweizerischen Naturforschenden Gesellschaft', 4], ['Flora Helvetica', 5], ['Info Flora Schweiz', 6], ['Insecta Mundi', 4], ['Laurentius Salvius', 15], ['Order out of Chaos. Linnaean Plant Types and their Types', 24], ['PhytoKeys', 4], ['Phytotaxa', 43], ['Zootaxa', 8], ['Other (8)', 10] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=172)', 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);