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 ', 1], ['Australian Journal of Zoology, Supplementary Series', 5], ['Beaufortia', 4], ['Bulletin of the National Science Museum, Series A (Zoology)', 3], ['European Journal of Taxonomy', 2], ['Hallageriis', 1], ['Journal of Natural History', 14], ['Proceedings of the Japanese Society of Systematic Zoology', 1], ['Records of the Canterbury Museum', 1], ['Records of the Dominion Museum', 1], ['Schriften der Berlinischen Gesellschaft Naturforchender Freunde, Berlin', 1], ['Transactions of the Royal Society of New Zealand', 3], ['Zoological Journal of the Linnean Society', 14], ['Zoological Systematics', 2], ['Zootaxa', 122], ['Other (6)', 6] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=181)', 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);