function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Bates, Paul J. J. & Nwe, Tin & Bu, Si Si Hla & Mie, Khin Mie', 1], ['Don E. Wilson & Russell A. Mittermeier', 3], ['Thomas, Nikky M. & Duckworth, J. W. & Douangboubpha, Bounsavane', 1], ['Voon-Ching Lim & Rosli Ramli & Subha Bhassu & John-James Wilson', 2], ['Wilson, Don E. & Reeder, DeeAnn', 6] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=13)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 5, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);