function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['BĂ©thoux, Olivier', 1], ['DeWalt, R. Edward & Grubbs, Scott A.', 2], ['Grubbs, Scott A. & Pessino, Massimo & DeWalt, R. Edward', 1], ['Judson, Sarah W. & Nelson, C. Riley', 1], ['Myers, L. W. & Kondratieff, B. C.', 9], ['Ray, Donald H. & Abad, Rick L. & Rasmussen, Andrew K.', 1], ['Sandberg, John B. & Stewart, Kenneth W.', 2] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=17)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 7, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);