function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acta Entomologica Musei Nationalis Pragae', 11], ['Acta Societatis Regiae Scientiarum Indo-Neêrlandicae', 1], ['Annale van die Suid-Afrikaanse Museum [Annals of the South African Museum]', 1], ['Anzeiger', 1], ['Bulletin of the American Museum of Natural History', 1], ['Linzer biologische Beiträge', 1], ['Monatsberichte der Akademie der Wissenschaft zu Berlin', 2], ['Nouvelles Archives du Muséum d\'Histoire Naturelle, Paris, Série 2', 1], ['Proceedings of the Linnean Society of New South Wales', 2], ['Proceedings of the Royal Society of Queensland', 1], ['Proceedings of the Zoological Society of London, B', 2], ['Report of the British Association for the Advancement of Science', 2], ['Revue Zoologique, par la Société Cuvierienne', 2], ['Verhandelingen van het Bataviaasch Genootschap van Kunsten en Wetenschappen', 1], ['l\'Impremerie Nationale', 2], ['Other (1)', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=32)', 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);