function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Adansonia', 214], ['Australian Systematic Botany', 13], ['Botanische Jahrbücher fur Systematik, Pflanzengeschichte und Pflanzengeographie.', 54], ['Bulletin of the American Museum of Natural History', 9], ['Candollea', 38], ['Journal of the Arnold Arboretum', 29], ['Kew Bulletin', 9], ['Laurentius Salvius', 23], ['Nova Guinea. Contributions to the anthropology, botany, geology and zoology of the Papuan region. Botany', 11], ['Order out of Chaos. Linnaean Plant Types and their Types', 36], ['Papéis Avulsos de Zoologia', 25], ['PhytoKeys', 57], ['Phytotaxa', 301], ['Zoosystema', 14], ['Zootaxa', 16], ['Other (28)', 71] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=920)', 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);