function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['ADansonia, Sér. 3', 1], ['Adansonia', 111], ['B. White, T. Cadell, & P. Elmsly', 1], ['Biodiversity Data Journal', 1], ['Blumea - Biodiversity, Evolution and Biogeography of Plants', 2], ['Botanische Jahrbücher fur Systematik, Pflanzengeschichte und Pflanzengeographie.', 8], ['Bulletin du Muséum National d’Histoire Naturelle, Série 4, Section B, Botanique, Biologie et Écologie Végétales, Phytochimie', 2], ['Insecta Mundi', 1], ['Journal of the Arnold Arboretum', 5], ['Nova Guinea. Contributions to the anthropology, botany, geology and zoology of the Papuan region. Botany', 1], ['Order out of Chaos. Linnaean Plant Types and their Types', 2], ['PhytoKeys', 1], ['Phytotaxa', 3] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=139)', 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);