function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Akademiia Nauk SSSR, Trudy P. P. Shirshov Instytut Okeanologii', 6], ['Annals and Magazine of Natural History, Including Zoology, Botany and Geology, Being a Continuation of the \' Magazine of Botany ', 3], ['Bulletin de l\'Institut Océanographique de Monaco', 8], ['Bulletin of the Bingham Oceanographic Collection Yale University', 12], ['Copeia', 33], ['Discovery Reports', 4], ['European Journal of Taxonomy', 81], ['Japanese Journal of Zoology', 4], ['Proceedings of the Academy of Natural Sciences of Philadelphia', 4], ['Proceedings of the New England Zoölogical Club', 4], ['Proceedings of the United States National Museum, 3', 11], ['Smithsonian Contributions to Zoology', 21], ['The Danish “', 73], ['Voprosy Ikhtiologii', 17], ['Zootaxa', 55], ['Other (33)', 45] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=381)', 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);