function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annales du Musee Royale de l\'Afrique Centrale, Zoologie, Serie 8', 1], ['Annales du Musée du Congo Belge, Série 1, Zoologiques', 4], ['Arq. Mus. Bocage Lisboa, A', 1], ['Bulletin de la Société Zoologique de France', 2], ['Ichthyological Exploration of Freshwaters', 1], ['Mémoires du Muséum national d\'Histoire naturelle', 1], ['Proceedings of the Academy of Natural Sciences of Philadelphia', 4], ['Proceedings of the Biological Society of Washington', 2], ['Proceedings of the United States National Museum, 3', 1], ['Publicacoes Culturais da Companhia de Diamantes Angola', 2], ['Revue Zoologique Africaine', 2], ['Zootaxa', 2] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=23)', 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);