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], ['Biodiversity Data Journal', 11], ['Copeia', 2], ['F. G. Levrault', 10], ['Japanese Journal of Ichthyology', 3], ['Natuurkunde Tijdschrift voor Nederlandsche-Indië', 5], ['Occasional Papers of the Bernice P. Bishop Museum', 2], ['Proceedings of the Academy of Natural Sciences of Philadelphia', 2], ['Proceedings of the Linnean Society of New South Wales', 2], ['Proceedings of the United States National Museum, 3', 4], ['Proceedings of the Zoological Society of London, B', 2], ['Tropical Fish Hobbyist', 2], ['Zootaxa', 35], ['l\'Impremerie Nationale', 3], ['Other (29)', 29] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=115)', 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);