function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annale van die Suid-Afrikaanse Museum [Annals of the South African Museum]', 6], ['Annales du Musee Royale de l\'Afrique Centrale, Zoologie, Serie 8', 2], ['Annales du Musée du Congo Belge, Série 1, Zoologiques', 3], ['Annali del Museo Civico di Storia Naturale di Genova', 3], ['Archives du Museum National d\'Histoire Naturelle, 6', 5], ['Bonner zoologische Beiträge', 2], ['Bulletin de la Société Zoologique de France', 5], ['Bulletin du Musée Royal d\'Histoire Naturelle de Belgique', 2], ['Bulletin du Muséum National d’Histoire Naturelle, Série 2', 3], ['Bulletin of the British Museum (Natural History), Zoology Series', 4], ['Ichthyological Exploration of Freshwaters', 2], ['Proceedings of the Zoological Society of London, B', 6], ['Revue de Zoologie et de Botanique Africaines', 7], ['Spixiana', 3], ['Transactions of the Zoological Society of London', 4], ['Other (18)', 21] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=78)', 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);