function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acta Societatis Regiae Scientiarum Indo-Neêrlandicae', 2], ['Annali del Museo Civico di Storia Naturale di Genova', 1], ['Bronner', 1], ['Bulletin de la Société Philomathique de Paris, Série 7', 1], ['Bulletin of the Raffles Museum', 1], ['Bulletin of the Vanderbilt Oceanographic Museum', 1], ['Journal of the Bombay Natural History Society', 2], ['Journal of the Siam Society Natural History, Supplement', 1], ['Lingnan Science Journal', 1], ['Monatsberichte der Akademie der Wissenschaft zu Berlin', 3], ['Natuurkunde Tijdschrift voor Nederlandsche-Indië', 7], ['Proceedings of the Linnean Society of New South Wales', 3], ['Proceedings of the United States National Museum, 3', 3], ['Sitzungsberichte der Kaiserlichen Akademie der Wissenschaften, Mathematisch-Naturwissenschaften Classe', 2], ['Zootaxa', 5], ['Other (9)', 9] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=43)', 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);