function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acta Societatis Regiae Scientiarum Indo-Neêrlandicae', 3], ['Annales des Sciences Naturelles, Zoologie, Série 5', 2], ['Anzeiger', 3], ['Biodiversity Data Journal', 2], ['Cybium', 4], ['European Journal of Taxonomy', 4], ['Jornal de Sciencias Mathematicas, Physicas e Naturaes', 2], ['Monatsberichte der Akademie der Wissenschaft zu Berlin', 7], ['Natuurkunde Tijdschrift voor Nederlandsche-Indië', 13], ['Proceedings of the Linnean Society of New South Wales', 6], ['Proceedings of the United States National Museum, 3', 3], ['Proceedings of the Zoological Society of London, B', 5], ['Report of the British Association for the Advancement of Science', 5], ['Sitzungsberichte der Kaiserlichen Akademie der Wissenschaften, Mathematisch-Naturwissenschaften Classe', 3], ['Zootaxa', 18], ['Other (20)', 25] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=105)', 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);