function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annales de l\'Institut Océanographique, Nouvelle Serie', 1], ['Annals and Magazine of Natural History, Including Zoology, Botany and Geology, Being a Continuation of the \' Magazine of Botany ', 5], ['Arkiv för Zoologi', 1], ['Biodiversity Data Journal', 4], ['Bulletin du Muséum National d’Histoire Naturelle, Série 2', 1], ['Bulletin of the Bingham Oceanographic Collection Yale University', 1], ['Bulletin of the Museum of Comparative Zoology at Harvard College, 3', 1], ['Bulletin of the United States National Museum', 1], ['Copeia', 3], ['European Journal of Taxonomy', 6], ['Galathea Report', 3], ['Journal of Fish Biology', 2], ['Journal of the Washington Academy of Sciences', 2], ['Marine Investigations in South Africa', 2], ['Zootaxa', 13], ['Other (7)', 7] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=53)', 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);