function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acta Palaeontologica Polonica', 4], ['Adansonia', 1], ['Blumea - Biodiversity, Evolution and Biogeography of Plants', 3], ['Botanische Jahrbücher fur Systematik, Pflanzengeschichte und Pflanzengeographie.', 2], ['Candollea', 2], ['European Journal of Taxonomy', 2], ['Flora Malesiana, Series 1', 2], ['Fossil Imprint', 1], ['Laurentius Salvius', 2], ['Order out of Chaos. Linnaean Plant Types and their Types', 6], ['PhytoKeys', 1], ['Phytologia', 1], ['Phytotaxa', 7], ['Zoosystema', 1], ['Zootaxa', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=36)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 15, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);