function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Biodiversity Data Journal', 3], ['Bulletin du Muséum National d’Histoire Naturelle, [Série 1]', 1], ['Bulletin of the National Science Museum, Series A (Zoology)', 2], ['Journal of Crustacean Biology', 3], ['Journal of Natural History', 26], ['Nauplius', 2], ['Occasional Papers of the Bernice P. Bishop Museum', 2], ['Officina Libraria Kortii', 1], ['Proceedings of the Biological Society of Washington', 2], ['Raffles Bulletin of Zoology', 68], ['Species Diversity', 10], ['ZooKeys', 2], ['Zoological Science', 2], ['Zoosystema', 32], ['Zootaxa', 283], ['Other (1)', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=440)', 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);