function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['BĂ©thoux, Olivier', 1], ['Chen, Zhi-Teng', 3], ['DeWalt, R. Edward & Grubbs, Scott A.', 4], ['Earle, Jane I.', 4], ['Liu, Ruijun & Mo, Raorao & Li, Weihai', 2], ['Newell, Robert L. & Baumann, Richard W.', 1], ['Stark, Bill P. & Sivec, Ignac', 5], ['Verdone, Chris J. & South, Eric J. & Kondratieff, Boris C.', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=21)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 8, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);