function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Adansonia', 116], ['Bijdragen tot de Flora van Nederlandsch Indie', 1], ['Biodiversity Data Journal', 6], ['Birkhaeuser Verlag', 2], ['Blumea - Biodiversity, Evolution and Biogeography of Plants', 20], ['Botanische Jahrbücher fur Systematik, Pflanzengeschichte und Pflanzengeographie.', 1], ['Bulletin du Jardin Botanique de Buitenzorg, sér. 3', 1], ['Bulletin of Miscellaneous Information (Royal Gardens Kew)', 1], ['Candollea', 23], ['Edinburgh Journal of Botany', 3], ['Insecta Mundi', 2], ['Order out of Chaos. Linnaean Plant Types and their Types', 6], ['PhytoKeys', 3], ['Phytologia', 9], ['Phytotaxa', 8], ['Other (4)', 4] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=206)', 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);