function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Arch. Zool. Anat. Fisiol., Genova, 2', 1], ['European Journal of Taxonomy', 3], ['Illust. Sydney News', 1], ['Journal of Systematic Palaeontology', 1], ['Occasional Papers of the California Academy of Sciences', 2], ['Sanfilippo', 1], ['Spolia Zeylanica [Ceylon Journal Sci], Section B-Zoo', 1], ['The Journal of the College of Science, Imperial University of Tokyo', 1], ['Zootaxa', 3] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=14)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 9, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);