function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Adansonia', 19], ['Biodiversity Data Journal', 14], ['Birkhaeuser Verlag', 42], ['Blumea - Biodiversity, Evolution and Biogeography of Plants', 2], ['Botanische Jahrbücher fur Systematik, Pflanzengeschichte und Pflanzengeographie.', 3], ['Denkschriften der Schweizerischen Naturforschenden Gesellschaft', 18], ['European Journal of Taxonomy', 4], ['Flora Helvetica', 10], ['Info Flora Schweiz', 75], ['Insecta Mundi', 3], ['J. Cramer', 7], ['Laurentius Salvius', 10], ['Order out of Chaos. Linnaean Plant Types and their Types', 13], ['PhytoKeys', 11], ['Phytotaxa', 136], ['Other (10)', 12] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=379)', 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);