function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acta Societatis Regiae Scientiarum Indo-Neêrlandicae', 5], ['Anales de la Sociedad Española de Historia Natural', 1], ['Australian zoologist', 1], ['Bulletin Inst. Fondam. Afr. Noire Sci. Nat., A', 3], ['Bulletin from the Laboratories of Natural History of the State University of Iowa', 2], ['Bulletin of the Museum of Comparative Zoology at Harvard College, 3', 1], ['Copeia', 9], ['European Journal of Taxonomy', 6], ['Natuurkunde Tijdschrift voor Nederlandsche-Indië', 2], ['Proceedings of the Academy of Natural Sciences of Philadelphia', 5], ['Proceedings of the Royal Society of Queensland', 2], ['Proceedings of the United States National Museum, 3', 11], ['Records of the Australian Museum', 3], ['Records of the South Australian Museum', 2], ['Zootaxa', 27], ['Other (18)', 18] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=98)', 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);