function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['A. Constable', 2], ['Acta Societatis Regiae Scientiarum Indo-Neêrlandicae', 1], ['Annales de la Société Impériale d\'Agriculture, Histoire Naturelle de Lyon', 1], ['Annals of the Lyceum of Natural History of New York', 1], ['Biodiversity Data Journal', 4], ['Bulletin de la Société Philomathique de Paris, Série 7', 1], ['Central News Agency, Ltd.', 1], ['Indo-Pacific Fishes', 5], ['Natuurkunde Tijdschrift voor Nederlandsche-Indië', 2], ['Proceedings of the United States National Museum, 3', 1], ['Raffles Bulletin of Zoology', 2], ['Senckenbergiana Biologica', 1], ['Verhandelingen van het Bataviaasch Genootschap van Kunsten en Wetenschappen', 1], ['Zootaxa', 9] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=32)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 14, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);