function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Adansonia', 6], ['Botanical Magazine Tokyo', 4], ['Botanische Jahrbücher fur Systematik, Pflanzengeschichte und Pflanzengeographie.', 36], ['Candollea', 16], ['Edinburgh Journal of Botany', 66], ['Entomo Helvetica', 3], ['European Journal of Taxonomy', 10], ['Notes from the Royal Botanic Garden, Edinburgh, Horti Agrobotanici Cluj-Napoca', 6], ['Order out of Chaos. Linnaean Plant Types and their Types', 11], ['PhytoKeys', 112], ['Phytotaxa', 143], ['Plant Ecology and Evolution', 6], ['The Entomolog', 6], ['Transactions of the Linnean Society of London, Second Series. Botany', 4], ['Zootaxa', 8], ['Other (13)', 15] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=452)', 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);