function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Akademiia Nauk SSSR, Trudy P. P. Shirshov Instytut Okeanologii', 7], ['Bulletin de l\'Institut Océanographique de Monaco', 8], ['Bulletin of the Bingham Oceanographic Collection Yale University', 12], ['Bulletin of the Museum of Comparative Zoology at Harvard College', 6], ['Bulletin of the Museum of Comparative Zoology at Harvard College, 3', 9], ['Copeia', 37], ['Discovery Reports', 5], ['European Journal of Taxonomy', 121], ['Japanese Journal of Zoology', 5], ['Proceedings of the United States National Museum, 3', 18], ['Smithsonian Contributions to Zoology', 21], ['The Danish “', 73], ['Videnskabelige Meddelelser frå Dansk Naturhistorisk Forening', 8], ['Voprosy Ikhtiologii', 23], ['Zootaxa', 164], ['Other (55)', 97] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=614)', 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);