function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Adansonia', 148], ['Biodiversity Data Journal', 8], ['Botanical Magazine Tokyo', 6], ['Botanische Jahrbücher fur Systematik, Pflanzengeschichte und Pflanzengeographie.', 59], ['Brunonia', 12], ['Candollea', 15], ['Flora Iberica - Plantas vascularles de la Península Ibérica e Islas Baleares.', 12], ['Journal of the Arnold Arboretum', 49], ['Kew Bulletin', 13], ['Laurentius Salvius', 19], ['Nova Guinea. Contributions to the anthropology, botany, geology and zoology of the Papuan region. Botany', 7], ['Order out of Chaos. Linnaean Plant Types and their Types', 23], ['PhytoKeys', 21], ['Phytotaxa', 51], ['Zootaxa', 7], ['Other (26)', 52] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=502)', 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);