function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Alonso, Miguel & Cohen, Rosa Graciela & Ventura, Marc', 1], ['Chergui, Isslam & Satour, Abdellatif & Bouzid, Abdelhakim', 2], ['Cohen, Rosa Graciela', 1], ['Diaz, Analía R. & Álvarez, Victor Hugo Merlo', 7], ['Pugh, P. J. A. & Dartnall, H. J. G. & McInnes, S. J.', 2], ['Rogers, Christopher & Dasis, Don & Murrow, Daniel G.', 1], ['Rogers, Christopher & Ferreira, Aloisio', 1], ['Rogers, D. Christopher', 4], ['Rogers, D. Christopher & Hill, Matthew A.', 15], ['Rogers, D. Christopher & Lorenz, Helen Racz', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=35)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 10, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);