function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acta Societatis Regiae Scientiarum Indo-Neêrlandicae', 2], ['Annales de la Société Impériale d\'Agriculture, Histoire Naturelle de Lyon', 2], ['Aqua, Journal of Ichthyology and Aquatic Biology', 6], ['Biblioteca de Clasicos Cubanos', 3], ['Biodiversity Data Journal', 12], ['Bronner', 2], ['Bulletin de la Société Philomathique de Paris, Série 7', 2], ['Bulletin of the United States Bureau of Fisheries', 7], ['Natuurkunde Tijdschrift voor Nederlandsche-Indië', 7], ['Proceedings of the Academy of Natural Sciences of Philadelphia', 7], ['Proceedings of the Linnean Society of New South Wales', 7], ['Proceedings of the United States National Museum, 3', 3], ['Records of the Australian Museum', 8], ['Revue française d\'Aquariologie Herpétologie', 4], ['Zootaxa', 29], ['Other (31)', 36] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=137)', 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);