function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acta Societatis Regiae Scientiarum Indo-Neêrlandicae', 1], ['Ann. Natal Mus. P\'mburg', 2], ['Annale van die Suid-Afrikaanse Museum [Annals of the South African Museum]', 1], ['Annales de la Société Impériale d\'Agriculture, Histoire Naturelle de Lyon', 1], ['Annals of the Carnegie Museum', 1], ['Biodiversity Data Journal', 4], ['Bronner', 1], ['F. G. Levrault', 8], ['Natuurkunde Tijdschrift voor Nederlandsche-Indië', 5], ['Occasional Papers of the Bernice P. Bishop Museum', 2], ['Proceedings of the Linnean Society of New South Wales', 2], ['Proceedings of the United States National Museum, 3', 3], ['Proceedings of the Zoological Society of London, B', 2], ['Zootaxa', 2], ['l\'Impremerie Nationale', 3], ['Other (14)', 14] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=52)', 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);