function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Akademiia Nauk SSSR, Trudy P. P. Shirshov Instytut Okeanologii', 1], ['Annals and Magazine of Natural History, Including Zoology, Botany and Geology, Being a Continuation of the \' Magazine of Botany ', 1], ['Bulletin du Muséum National d’Histoire Naturelle, Santiago', 2], ['Bulletin of Marine Science', 1], ['Bulletin of the American Museum of Natural History', 1], ['Bulletin of the Museum of Comparative Zoology at Harvard College, 3', 5], ['Copeia', 2], ['Cybium', 7], ['European Journal of Taxonomy', 5], ['Forhandlingar i Videnskabsselskabet i Kristiania', 1], ['Investigative Reports of the Oceanographic Research Institute Durban', 1], ['Japanese Journal of Ichthyology', 1], ['Raffles Bulletin of Zoology', 2], ['Zoologicheskii Zhurnal', 2], ['Zootaxa', 49], ['Other (5)', 5] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=86)', 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);