function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Akademiia Nauk SSSR, Trudy P. P. Shirshov Instytut Okeanologii', 1], ['Annals and Magazine of Natural History, Including Zoology, Botany and Geology, Being a Continuation of the \' Magazine of Botany ', 1], ['Bocagiana, Funchal', 2], ['Breviora', 1], ['Bulletin de la Société Zoologique de France', 1], ['Bulletin du Muséum National d’Histoire Naturelle, [Série 1]', 2], ['Bulletin of the Bingham Oceanographic Collection Yale University', 1], ['Bulletin of the Museum of Comparative Zoology at Harvard College', 2], ['Dana Reports', 1], ['E. J. Brill', 2], ['European Journal of Taxonomy', 4], ['Journal and Proceedings of the Asiatic Society of Bengal', 1], ['Proceedings of the New England Zoölogical Club', 1], ['Proceedings of the United States National Museum, 3', 3], ['Zootaxa', 22] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=45)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 15, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);