function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acta Entomologica Musei Nationalis Pragae', 13], ['Biodiversity Data Journal', 74], ['Birkhaeuser Verlag', 15], ['Blumea - Biodiversity, Evolution and Biogeography of Plants', 22], ['Botanische Jahrbücher fur Systematik, Pflanzengeschichte und Pflanzengeographie.', 33], ['Candollea', 12], ['Check List', 185], ['Denkschriften der Schweizerischen Naturforschenden Gesellschaft', 13], ['Gardens\' Bulletin (Singapore)', 13], ['Info Flora Schweiz', 14], ['Linzer biologische Beiträge', 32], ['Order out of Chaos. Linnaean Plant Types and their Types', 42], ['PhytoKeys', 34], ['Phytotaxa', 102], ['Zootaxa', 268], ['Other (27)', 113] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=985)', 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);