function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Biodiversity Data Journal', 59], ['Birkhaeuser Verlag', 48], ['Blumea - Biodiversity, Evolution and Biogeography of Plants', 2], ['Botanische Jahrbücher fur Systematik, Pflanzengeschichte und Pflanzengeographie.', 1], ['Candollea', 4], ['Check List', 2], ['Denkschriften der Schweizerischen Naturforschenden Gesellschaft', 44], ['Flora Helvetica', 43], ['Info Flora Schweiz', 51], ['Laurentius Salvius', 15], ['Linzer biologische Beiträge', 12], ['Order out of Chaos. Linnaean Plant Types and their Types', 22], ['PhytoKeys', 1], ['Phytotaxa', 38], ['Zootaxa', 2], ['Other (1)', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=345)', 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);