function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Beaufortia', 1], ['Bulletin du Muséum National d’Histoire Naturelle, Série 2', 3], ['Bulletin of Marine Science', 3], ['Bulletin of the United States National Museum', 1], ['Copeia', 4], ['European Journal of Taxonomy', 3], ['Fishery Bulletin', 3], ['Iheringia Serie Zoologia, Serie Zoologia', 1], ['Journal of Fish Biology', 1], ['Journal of the Washington Academy of Sciences', 1], ['Notulae Naturae', 2], ['Proceedings of the Biological Society of Washington', 5], ['Proceedings of the United States National Museum, 3', 3], ['Zoologica', 5], ['Zootaxa', 33], ['Other (4)', 4] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=73)', 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);