function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annales du Musee Royale de l\'Afrique Centrale, Zoologie, Serie 8', 4], ['Annales du Musée du Congo Belge, Série 1, Zoologiques', 14], ['Arq. Mus. Bocage Lisboa, A', 1], ['Bulletin de la Société Zoologique de France', 5], ['Bulletin du Muséum National d’Histoire Naturelle, Série 2', 2], ['Bulletin of the American Museum of Natural History', 2], ['Journal of Natural History', 3], ['Monatsberichte der Akademie der Wissenschaft zu Berlin', 2], ['Proceedings of the Academy of Natural Sciences of Philadelphia', 4], ['Proceedings of the Biological Society of Washington', 2], ['Publicacoes Culturais da Companhia de Diamantes Angola', 4], ['Revue Zoologique Africaine', 7], ['Revue de Zoologie et de Botanique Africaines', 2], ['Zoological Journal of the Linnean Society', 2], ['Zootaxa', 6], ['Other (8)', 8] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=68)', 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);