function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Adansonia', 54], ['Bijdragen tot de Flora van Nederlandsch Indie', 11], ['Biodiversity Data Journal', 16], ['Blumea - Biodiversity, Evolution and Biogeography of Plants', 20], ['Botanische Jahrbücher fur Systematik, Pflanzengeschichte und Pflanzengeographie.', 23], ['Candollea', 9], ['Gardens\' Bulletin (Singapore)', 34], ['Harvard Papers in Botany', 5], ['Journal of the Arnold Arboretum', 5], ['Mémoires du Muséum national d\'Histoire naturelle', 35], ['Order out of Chaos. Linnaean Plant Types and their Types', 30], ['PhytoKeys', 14], ['Phytologia', 13], ['Phytotaxa', 46], ['Zootaxa', 6], ['Other (24)', 50] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=371)', 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);