function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Adansonia: Recueil d\'Observations Botaniques', 1], ['Bijdragen tot de Flora van Nederlandsch Indie', 4], ['Blumea - Biodiversity, Evolution and Biogeography of Plants', 1], ['Harvard Papers in Botany', 1], ['Kew Bulletin', 59], ['Linnaea: Ein Journal für die Botanik in ihrem ganzen Umfange', 1], ['Malesian Orchid Journal: a Bi-annual Journal of Orchid Systematics, Morphology and Natural History', 2], ['Nova Guinea. Contributions to the anthropology, botany, geology and zoology of the Papuan region. Botany', 3], ['Order out of Chaos. Linnaean Plant Types and their Types', 2], ['PhytoKeys', 11], ['Phytotaxa', 2], ['SIDA, Contributions to Botany', 1], ['University of California Publications in Botany', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=89)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 13, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);