function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annales du Musée du Congo Belge, Série 1, Zoologiques', 1], ['Biodiversity Data Journal', 1], ['Bollettino del Museo Civico di Storia Naturale di Verona', 1], ['Copeia', 3], ['Geodiversitas', 1], ['Hugh Rees, Ltd.', 1], ['Ichthyological Research', 1], ['Mémoires du Muséum National d’Histoire Naturelle, Série A, Zoologie', 4], ['Neotropical Ichthyology', 1], ['Proceedings of the Biological Society of Washington', 1], ['Zoosystema', 26], ['Zootaxa', 17] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=58)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 12, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);