function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Araújo, Thiago Quintão & Balsamo, Maria', 1], ['Chatterjee, Tapas & Priyalakshmi, Geetha & Todaro, M. Antonio', 43], ['Hochberg, Rick', 3], ['Hummon, William D.', 17], ['Hummon, William D. & Todaro, Antonio', 7], ['Kieneke, Alexander & Schmidt-Rhaesa, Andreas & Hochberg, Rick', 2], ['Kieneke, Alexander & Todaro, M. Antonio', 4], ['Kolicka, Małgorzata & Kisielewski, Jacek & Kotwicki, Lech', 2], ['Lee, Jimin & Chang, Cheon Young', 7], ['Lee, Jimin & Kim, Dongsung & Chang, Cheon Young', 7], ['Todaro, M. Antonio', 2], ['Todaro, M. Antonio & Leasi, Francesca & Hochberg, Rick', 2], ['Todaro, M. Antonio & Perissinotto, Renzo & Bownes, Sarah J.', 2], ['Todaro, M. Antonio & Zotto, Matteo Dal & Bownes, Sarah J.', 2], ['Yamauchi, Shohei & Kajihara, Hiroshi', 2], ['Other (11)', 11] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=114)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 16, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);