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 ', 8], ['Annals of Philosophy, New Series', 1], ['British Museum (Natural History)', 3], ['Bulletin -- United States National Museum', 10], ['Bulletin of the United States Bureau of Fisheries', 2], ['Memoirs of the College of Science, Kyoto Imperial University, B', 3], ['Memoirs of the Indian Museum', 4], ['Nouvelles Archives du Muséum d\'Histoire Naturelle, Paris, Série 4', 5], ['Proceedings of the Zoological Society of London', 2], ['Ray Society', 7], ['Reports of Science Research Voyage of H. M. S. Challenger. Zoology', 4], ['Veliger', 3], ['Zoosystema', 6], ['Zoosystematics and Evolution', 10], ['Zootaxa', 15], ['Other (16)', 16] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=99)', 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);