function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annals and Magazine of Natural History, Including Zoology, Botany and Geology, Being a Continuation of the \' Magazine of Botany ', 2], ['Biodiversity Data Journal', 6], ['Check List', 9], ['G. Levrault', 7], ['Isis von Oken', 2], ['Laurentius Salvius', 12], ['Papéis Avulsos de Zoologia', 2], ['Phytotaxa', 2], ['Raffles Bulletin of Zoology', 6], ['Records of the Australian Museum', 5], ['Revue suisse de Zoologie', 3], ['Transactions of the Linnean Society of London', 6], ['Zoosystema', 9], ['Zoosystematics and Evolution', 4], ['Zootaxa', 33], ['Other (4)', 4] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=112)', 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);