function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Adansonia', 187], ['Biodiversity Data Journal', 12], ['Birkhaeuser Verlag', 65], ['Blumea - Biodiversity, Evolution and Biogeography of Plants', 23], ['Botanische Jahrbücher fur Systematik, Pflanzengeschichte und Pflanzengeographie.', 4], ['Candollea', 4], ['Denkschriften der Schweizerischen Naturforschenden Gesellschaft', 39], ['Flora Helvetica', 44], ['Fossil Imprint', 4], ['Info Flora Schweiz', 66], ['Laurentius Salvius', 48], ['Linzer biologische Beiträge', 6], ['Order out of Chaos. Linnaean Plant Types and their Types', 61], ['PhytoKeys', 27], ['Phytotaxa', 79], ['Other (23)', 37] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=706)', 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);