function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Archiv für Fischereiwissenschaft', 9], ['Bulletin of the Bingham Oceanographic Collection Yale University', 9], ['Bulletin of the Museum of Comparative Zoology at Harvard College, 3', 4], ['Copeia', 10], ['European Journal of Taxonomy', 78], ['Memoirs of the Carnegie Museum', 5], ['Proceedings of the Academy of Natural Sciences of Philadelphia', 8], ['Proceedings of the United States National Museum, 3', 12], ['Special Bulletin of the United States National Museum', 6], ['Stanford Ichthyological Bulletin', 7], ['Videnskabelige Meddelelser frå Dansk Naturhistorisk Forening', 26], ['Voprosy Ikhtiologii', 6], ['Zitteliana', 22], ['Zoologischer Anzeiger', 5], ['Zootaxa', 123], ['Other (47)', 81] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=411)', 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);