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 ', 3], ['European Journal of Taxonomy', 21], ['Invertebrate Systematics', 1], ['Journal of Arachnology', 17], ['Journal of Natural History', 5], ['Proceedings of the Zoological Society of London', 2], ['Records of the Australian Museum', 51], ['ZooKeys', 19], ['Zoosystema', 1], ['Zootaxa', 39] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=159)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 10, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);