function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acta Societatis Regiae Scientiarum Indo-Neêrlandicae', 2], ['Biodiversity Data Journal', 17], ['Bulletin of the United States Fish Commission', 2], ['Bulletin of the United States National Museum', 3], ['Fauna of Saudi Arabia', 3], ['Ichthyological Bulletin of the J. L. B. Smith Institute of Ichthyology', 5], ['Natuur en Geneeskunde Archief voor Nederlandsche-Indië', 4], ['Natuurkunde Tijdschrift voor Nederlandsche-Indië', 17], ['Proceedings of the United States National Museum, 3', 2], ['Raffles Bulletin of Zoology', 4], ['Revista de Biologia Tropical', 2], ['Schmerber', 3], ['Verhandelingen van het Bataviaasch Genootschap van Kunsten en Wetenschappen', 2], ['Verslagen en Mededeelingen der Koninklijke Akademie van Wetenschappen. Afdeeling Natuurkunde', 2], ['Zootaxa', 34], ['Other (7)', 8] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=110)', 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);