function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Biodiversity Data Journal', 29], ['Birkhaeuser Verlag', 29], ['Blumea - Biodiversity, Evolution and Biogeography of Plants', 1], ['Botanische Jahrbücher fur Systematik, Pflanzengeschichte und Pflanzengeographie.', 3], ['Candollea', 4], ['Denkschriften der Schweizerischen Naturforschenden Gesellschaft', 20], ['European Journal of Taxonomy', 8], ['Flora Helvetica', 30], ['Info Flora Schweiz', 43], ['Journal of Species Research', 1], ['Laurentius Salvius', 21], ['Linzer biologische Beiträge', 2], ['Order out of Chaos. Linnaean Plant Types and their Types', 35], ['PhytoKeys', 19], ['Phytotaxa', 85], ['Other (2)', 2] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=332)', 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);