function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['African Journal of Aquatic Science', 1], ['Annales du Musée du Congo Belge, Série 1, Zoologiques', 5], ['Arq. Mus. Bocage Lisboa, A', 1], ['Bulletin du Muséum National d’Histoire Naturelle, Série 2', 1], ['Bulletin of the American Museum of Natural History', 2], ['Journal of Natural History', 15], ['Kungliga Svenska Vetenskapsakademiens Handlingar', 1], ['Occasional Papers of the National Museum of Southern Rhodesia', 1], ['Proceedings of the Academy of Natural Sciences of Philadelphia', 3], ['Proceedings of the Zoological Society of London, B', 1], ['Revue Zoologique Africaine', 4], ['Transactions of the Zoological Society of London', 1], ['Zootaxa', 5] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=41)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 13, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);