function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annales de la Société Linneenne de Maine-et-Loire', 6], ['Annals of the Carnegie Museum', 5], ['Biodiversity Data Journal', 16], ['Bulletin of the United States National Museum', 5], ['Check List', 12], ['European Journal of Taxonomy', 29], ['Journal of Natural History', 13], ['Natuurkunde Tijdschrift voor Nederlandsche-Indië', 4], ['Proceedings of the Academy of Natural Sciences of Philadelphia', 6], ['Proceedings of the California Academy of Sciences, Series 4', 3], ['Records of the Zoological Survey of India', 8], ['Report of the British Association for the Advancement of Science', 5], ['Sanfilippo', 4], ['Verhandelingen van het Bataviaasch Genootschap van Kunsten en Wetenschappen', 5], ['Zootaxa', 190], ['Other (49)', 64] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=375)', 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);