function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annale van die Suid-Afrikaanse Museum [Annals of the South African Museum]', 1], ['Annales du Musée du Congo Belge, Série 1, Zoologiques', 6], ['Anzeiger', 3], ['Bulletin du Muséum National d’Histoire Naturelle, Série 2', 3], ['Bulletin of the American Museum of Natural History', 2], ['Cybium', 4], ['Journal of Natural History', 12], ['Monitore Zoologico Italiano', 2], ['Proceedings of the Academy of Natural Sciences of Philadelphia', 2], ['Proceedings of the Zoological Society of London, B', 6], ['Revue Zoologique Africaine', 3], ['Sitzungsberichte der Kaiserlichen Akademie der Wissenschaften, Mathematisch-Naturwissenschaften Classe', 2], ['Transactions of the Zoological Society of London', 2], ['Zoosystema', 2], ['Zootaxa', 27], ['Other (13)', 13] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=90)', 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);