function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Adansonia', 68], ['Australian Systematic Botany', 6], ['Biodiversity Data Journal', 34], ['Birkhaeuser Verlag', 60], ['Candollea', 27], ['Denkschriften der Schweizerischen Naturforschenden Gesellschaft', 35], ['Flora Helvetica', 50], ['Geodiversitas', 6], ['Info Flora Schweiz', 75], ['Laurentius Salvius', 69], ['Linzer biologische Beiträge', 8], ['Order out of Chaos. Linnaean Plant Types and their Types', 126], ['PhytoKeys', 88], ['Phytotaxa', 115], ['Zootaxa', 6], ['Other (15)', 28] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=801)', 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);