function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['American Museum Novitates', 9], ['Annales du Musée du Congo Belge, Série 1, Zoologiques', 5], ['Annals of the Carnegie Museum', 2], ['Anzeiger', 5], ['Bollettino di Pesca Piscicoltura e Idrobiologia', 2], ['Bulletin de la Société Zoologique de France', 2], ['Bulletin du Muséum National d’Histoire Naturelle, Série 2', 3], ['Bulletin of the American Museum of Natural History', 3], ['Bulletin of the United States National Museum', 2], ['Monatsberichte der Akademie der Wissenschaft zu Berlin', 3], ['Proceedings of the Academy of Natural Sciences of Philadelphia', 5], ['Proceedings of the Zoological Society of London, B', 11], ['Raffles Bulletin of Zoology', 2], ['Records of the Indian Museum', 4], ['Zootaxa', 51], ['Other (24)', 24] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=133)', 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);