function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Biol. Results " Endeavour "', 14], ['Bulletin du Muséum National d’Histoire Naturelle, Série 2', 21], ['Bulletin of the Museum of Comparative Zoology at Harvard College', 11], ['Copeia', 16], ['Cybium', 11], ['E. J. Brill', 10], ['European Journal of Taxonomy', 47], ['Journal and Proceedings of the Asiatic Society of Bengal', 10], ['Laurentius Salvius', 17], ['Proceedings of the Academy of Natural Sciences of Philadelphia', 15], ['Proceedings of the Linnean Society of New South Wales', 10], ['Proceedings of the United States National Museum, 3', 39], ['Report of the Fisheries and Marine Biological Survey, Union of South Africa', 12], ['Report on the Scientific Results of the Voyage of H. M. S. “ Challenger ” during the Years 1873 - 76 under the Command of Captai', 15], ['Zootaxa', 421], ['Other (153)', 361] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=1030)', 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);