function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acta Societatis Regiae Scientiarum Indo-Neêrlandicae', 5], ['Anales de la Sociedad Española de Historia Natural', 1], ['Bulletin from the Laboratories of Natural History of the State University of Iowa', 2], ['Bulletin of the Museum of Comparative Zoology at Harvard College, 3', 1], ['Bulletin of the United States Bureau of Fisheries', 1], ['Bulletin of the United States Fish Commission', 1], ['Bulletin of the Vanderbilt Oceanographic Museum', 1], ['Copeia', 1], ['E. J. Brill', 1], ['European Journal of Taxonomy', 2], ['Israel Journal of Zoology', 1], ['Natuurkunde Tijdschrift voor Nederlandsche-Indië', 2], ['Proceedings of the Academy of Natural Sciences of Philadelphia', 5], ['Proceedings of the United States National Museum, 3', 9], ['Zootaxa', 11], ['Other (7)', 7] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=51)', 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);