function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['A. Constable', 6], ['Annales des Sciences Naturelles, Zoologie, Série 5', 1], ['Annals and Magazine of Natural History, Including Zoology, Botany and Geology, Being a Continuation of the \' Magazine of Botany ', 1], ['Anzeiger', 1], ['Arch. Zool. Anat. Fisiol., Genova, 2', 1], ['Bulletin de la Société Philomathique de Paris, Série 7', 1], ['Calcutta Journal of Natural History, and Miscellany of the Arts and Sciences in India', 3], ['E. J. Brill', 1], ['F. G. Levrault', 11], ['Natuurkunde Tijdschrift voor Nederlandsche-Indië', 5], ['Nouveaux Mémoires de la Société Impériale des Naturalistes de Moscou', 1], ['Proceedings of the United States National Museum, 3', 1], ['Proceedings of the Zoological Society of London, B', 4], ['Report of the British Association for the Advancement of Science', 2], ['Zoologischer Anzeiger', 1], ['Other (1)', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=41)', 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);