function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Adansonia', 84], ['Bijdragen tot de Flora van Nederlandsch Indie', 3], ['Biodiversity Data Journal', 6], ['Blumea - Biodiversity, Evolution and Biogeography of Plants', 4], ['Botanische Jahrbücher fur Systematik, Pflanzengeschichte und Pflanzengeographie.', 23], ['Candollea', 2], ['Fossil Imprint', 3], ['Insecta Mundi', 4], ['Journal of the Arnold Arboretum', 25], ['Laurentius Salvius', 3], ['Nova Guinea. Contributions to the anthropology, botany, geology and zoology of the Papuan region. Botany', 9], ['Order out of Chaos. Linnaean Plant Types and their Types', 13], ['PhytoKeys', 14], ['Phytotaxa', 12], ['Reports of Science Research Voyage of H. M. S. Challenger. Zoology', 4], ['Other (19)', 24] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=233)', 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);