function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Adansonia', 33], ['Adansonia: Recueil d\'Observations Botaniques', 11], ['Bijdragen tot de Flora van Nederlandsch Indie', 6], ['Biodiversity Data Journal', 8], ['Blumea - Biodiversity, Evolution and Biogeography of Plants', 5], ['Botanische Jahrbücher fur Systematik, Pflanzengeschichte und Pflanzengeographie.', 3], ['Candollea', 4], ['Insecta Mundi', 3], ['Kew Bulletin', 114], ['Linnaea: Ein Journal für die Botanik in ihrem ganzen Umfange', 7], ['Nova Guinea. Contributions to the anthropology, botany, geology and zoology of the Papuan region. Botany', 7], ['Order out of Chaos. Linnaean Plant Types and their Types', 14], ['PhytoKeys', 31], ['Phytotaxa', 40], ['Zootaxa', 14], ['Other (11)', 13] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=313)', 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);