function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Adansonia', 249], ['Biodiversity Data Journal', 18], ['Blumea - Biodiversity, Evolution and Biogeography of Plants', 26], ['Botanische Jahrbücher fur Systematik, Pflanzengeschichte und Pflanzengeographie.', 53], ['Candollea', 44], ['Fossil Imprint', 17], ['Insecta Mundi', 13], ['Journal of the Arnold Arboretum', 46], ['Laurentius Salvius', 12], ['Order out of Chaos. Linnaean Plant Types and their Types', 17], ['Palaeontologia Electronica', 8], ['PhytoKeys', 15], ['Phytotaxa', 62], ['Reinwardtia', 62], ['Zootaxa', 14], ['Other (22)', 46] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=702)', 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);