function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Beverley Tucker', 1], ['Bulletin du Muséum National d’Histoire Naturelle, Série 2', 1], ['Bulletin of the American Museum of Natural History', 2], ['European Journal of Taxonomy', 4], ['Jornal de Sciencias Mathematicas, Physicas e Naturaes', 2], ['Quarterly Journal of the Florida Academy of Sciences', 1], ['Report of the British Association for the Advancement of Science', 1], ['Sanfilippo', 3], ['Trudy Az. - Chern. Nauch. - issl. Inst. Mar. Ryb. Khoz. Okean.', 1], ['Zootaxa', 10] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=26)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 10, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);