function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Almquist and Wiksells', 1], ['Annales du Musée Royal du Congo Belge, Tervuren (Série in 8 º) Sciences Zoologiques', 1], ['Annali del Museo Civico di Storia Naturale di Genova', 1], ['Annals of the Natal Museum', 2], ['Arkiv för Zoologi', 1], ['Arthropod Systematics & amp; Phylogeny', 15], ['Bulletin of the British Arachnological Society', 1], ['Entomo-Info', 2], ['Eos, Revista Española de Entomología', 1], ['Phegea', 1], ['Revue suisse de zoologie', 1], ['Stanford University Publications, University Series, Biological Sciences', 1], ['Zoological Systematics', 2], ['Zoologischer Anzeiger', 2], ['Zootaxa', 6], ['Other (2)', 2] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=40)', 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);