function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Adansonia', 41], ['Biodiversity Data Journal', 31], ['Birkhaeuser Verlag', 7], ['Blumea - Biodiversity, Evolution and Biogeography of Plants', 39], ['Botanische Jahrbücher fur Systematik, Pflanzengeschichte und Pflanzengeographie.', 13], ['Candollea', 45], ['Fossil Imprint', 18], ['Info Flora Schweiz', 11], ['Insecta Mundi', 22], ['Journal of the Arnold Arboretum', 13], ['Laurentius Salvius', 14], ['Order out of Chaos. Linnaean Plant Types and their Types', 34], ['PhytoKeys', 24], ['Phytotaxa', 39], ['Zootaxa', 11], ['Other (17)', 39] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=401)', 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);