function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acta Societatis Regiae Scientiarum Indo-Neêrlandicae', 1], ['Annals of the Natal Museum', 1], ['Anzeiger', 2], ['Bulletin de l\'Institut Royal des Sciences Naturelles de Belgique', 3], ['Bulletin du Muséum National d’Histoire Naturelle, Série 2', 1], ['Cybium', 1], ['Denkschriften der Kaiserlichen Akademie der Wissenschaften, Wien', 2], ['European Journal of Taxonomy', 2], ['Proceedings of the Academy of Natural Sciences of Philadelphia', 2], ['Proceedings of the Linnean Society of New South Wales', 3], ['Proceedings of the Zoological Society of London, B', 2], ['Report of the British Association for the Advancement of Science', 2], ['Report of the Fisheries and Marine Biological Survey, Union of South Africa', 2], ['Sitzungsberichte der Kaiserlichen Akademie der Wissenschaften, Mathematisch-Naturwissenschaften Classe', 2], ['Zootaxa', 6], ['Other (18)', 18] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=50)', 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);