function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acta Societatis Regiae Scientiarum Indo-Neêrlandicae', 1], ['Annale van die Suid-Afrikaanse Museum [Annals of the South African Museum]', 1], ['Biodiversity Data Journal', 1], ['Bulletin de la Société Philomathique de Paris, Série 7', 1], ['Bulletin de la Société Zoologique de France', 1], ['Bulletin of the Raffles Museum', 1], ['Calcutta Journal of Natural History, and Miscellany of the Arts and Sciences in India', 1], ['Check List', 3], ['Natuurkunde Tijdschrift voor Nederlandsche-Indië', 5], ['Proceedings of the Linnean Society of New South Wales', 7], ['Raffles Bulletin of Zoology', 6], ['Records of the South Australian Museum', 2], ['Records of the Zoological Survey of India', 2], ['Zoologische Mededelingen, Leiden', 2], ['Zootaxa', 26], ['Other (14)', 14] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=74)', 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);