function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acta Societatis Regiae Scientiarum Indo-Neêrlandicae', 1], ['Bronner', 1], ['Bulletin of the United States National Museum', 2], ['California Fish and Game', 1], ['Gayana, Zoologia', 1], ['Jornal de Sciencias Mathematicas, Physicas e Naturaes', 1], ['Journal of the Bombay Natural History Society', 1], ['Natuurkunde Tijdschrift voor Nederlandsche-Indië', 1], ['Nouvelles Archives du Muséum d\'Histoire Naturelle, Paris, Série 2', 1], ['Proceedings of the Academy of Natural Sciences of Philadelphia', 2], ['Proceedings of the United States National Museum, 3', 9], ['Proceedings of the Zoological Society of London, B', 2], ['Reports of the Usa Marine Biological Station', 1], ['The Zoological Journal', 2], ['Zootaxa', 26], ['Other (2)', 2] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=54)', 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);