function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Adansonia', 382], ['Biodiversity Data Journal', 62], ['Birkhaeuser Verlag', 62], ['Bishop Museum Bulletins in Botany', 59], ['Botanische Jahrbücher fur Systematik, Pflanzengeschichte und Pflanzengeographie.', 93], ['Candollea', 198], ['Check List', 45], ['European Journal of Taxonomy', 121], ['Info Flora Schweiz', 59], ['Journal of the Arnold Arboretum', 114], ['Laurentius Salvius', 69], ['Nova Guinea. Contributions to the anthropology, botany, geology and zoology of the Papuan region. Botany', 59], ['Order out of Chaos. Linnaean Plant Types and their Types', 135], ['PhytoKeys', 89], ['Phytotaxa', 334], ['Other (56)', 466] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=2347)', 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);