function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Alonso, Miguel & Garcia-De-Lomas, Juan', 1], ['Boix, Dani & Sala, Jordi & Escoriza, Daniel & Alonso, Miguel', 1], ['Boumendjel, Lylia & Rabet, Nicolas & Amarouayache, Mounia', 2], ['Chergui, Isslam & Satour, Abdellatif & Bouzid, Abdelhakim', 5], ['Cottarelli, Vezio & Aygen, Cem & Mura, Graziella', 3], ['Cottarelli, Vezio & Mura, Graziella & Ippolito, Giuseppe', 1], ['Rogers, D. Christopher', 13], ['Rogers, D. Christopher & Hill, Matthew A.', 5], ['Rogers, D. Christopher & Soufi, Mahmoud', 2], ['Shu, Shu-Sen & Chen, Xiao-Yong & Rogers, D. Christopher', 2], ['Takahashi, Norihito & Kitano, Takashi & Hatanaka, Yushi', 3] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=38)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 11, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);