function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['American Museum Novitates', 21], ['Annale van die Suid-Afrikaanse Museum [Annals of the South African Museum]', 1], ['Annals and Magazine of Natural History, Including Zoology, Botany and Geology, Being a Continuation of the \' Magazine of Botany ', 2], ['Annotationes Zoologicae Japonenses', 1], ['Archiv für Naturgeschichte', 1], ['Bulletin de la Société Zoologique de France', 1], ['Bulletin of the Illinois State Laboratory of Natural History', 1], ['Dobutsugaku Zasshi', 3], ['Ecologica Montenegrina', 17], ['Evolutionary Systematics', 2], ['Journal of Parasitology', 2], ['Proceedings of the Imperial Academy', 2], ['Records of the Zoological Survey of India', 5], ['ZooKeys', 34], ['Zootaxa', 51], ['Other (7)', 7] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=151)', 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);