function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Adansonia', 29], ['Bernice P. Bishop Museum Bulletin', 5], ['Biodiversity Data Journal', 9], ['Birkhaeuser Verlag', 11], ['Blumea - Biodiversity, Evolution and Biogeography of Plants', 11], ['Botanische Jahrbücher fur Systematik, Pflanzengeschichte und Pflanzengeographie.', 2], ['Flora Helvetica', 5], ['Info Flora Schweiz', 11], ['Insecta Mundi', 17], ['Journal of the Arnold Arboretum', 8], ['Order out of Chaos. Linnaean Plant Types and their Types', 56], ['PhytoKeys', 57], ['Phytotaxa', 48], ['Zoosystema', 5], ['Zootaxa', 5], ['Other (11)', 13] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=292)', 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);