function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Biodiversity Data Journal', 31], ['Blumea - Biodiversity, Evolution and Biogeography of Plants', 2], ['Bulletin du Muséum National d’Histoire Naturelle, Série 4, Section B, Adansonia, Botanique, Phytochimie', 1], ['Bulletin of miscellaneous information. Additional Series. Royal Gardens, Kew.', 1], ['Candollea', 2], ['Iheringia, Série Botânica', 10], ['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], ['Order out of Chaos. Linnaean Plant Types and their Types', 5], ['PhytoKeys', 1], ['Phytotaxa', 8], ['Plant Ecology and Evolution', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=65)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 12, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);