function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Al-Khazali, Azhar Mohammed & Kachel, Hamid Saeid', 1], ['Alberto T. Barrion & Aimee Lynn A. Barrion-Dupo', 1], ['Alioua, Youcef & Bosmans, Robert & Kherbouche, Ourida', 3], ['Biswas, B. & Majumder, S. C.', 2], ['Dean, David Allen', 1], ['Framenau, Volker W. & Castanheira, Pedro De S.', 4], ['Lin, Yejie & Wu, Lingbing & Cai, Ducheng & Li, Shuqiang', 1], ['Marusik, Yuri M. & Koponen, Seppo', 1], ['Ott, Ricardo & Rodrigues, Everton Nei Lopes', 2], ['Tanikawa, Akio', 2], ['ZONSTEIN, SERGEI & MARUSIK, YURI M.', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=19)', 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);