function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Biodiversity Data Journal', 113], ['Birkhaeuser Verlag', 29], ['Botanische Jahrbücher fur Systematik, Pflanzengeschichte und Pflanzengeographie.', 8], ['Candollea', 11], ['Denkschriften der Schweizerischen Naturforschenden Gesellschaft', 20], ['Flora Helvetica', 27], ['Info Flora Schweiz', 36], ['Insecta Mundi', 4], ['Laurentius Salvius', 35], ['Linzer biologische Beiträge', 9], ['Order out of Chaos. Linnaean Plant Types and their Types', 71], ['PhytoKeys', 23], ['Phytotaxa', 209], ['South African Journal of Botany', 4], ['Webbia - Journal of Plant Taxonomy and Geography', 14], ['Other (14)', 24] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=637)', 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);