function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Almeida, Ana C. S. & Souza, Facelucia B. C. & Menegola, Carla', 1], ['Dick, Matthew H. & Grischenko, Andrei V.', 2], ['Gerovasileiou, Vasilis & Rosso, Antonietta', 10], ['Grischenko, Andrei V. & Dick, Matthew H. & Mawatari, Shunsuke F.', 1], ['HAYWARD, PETER J. & McKINNEY, FRANK K.', 1], ['Martino, Emanuela Di', 1], ['Martino, Emanuela Di & Taylor, Paul D.', 1], ['Ramalho, Laís V. & Moraes, Fernando C. & Salgado, Leonardo T.', 1], ['Ramalho, Laís V. & Muricy, Guilherme & Taylor, Paul D.', 1], ['Ramalho, Laís V. & Taylor, Paul D. & Moraes, Fernando Coreixas', 4], ['Rodrigues, Maria J. S. & Almeida, Ana C. S. & Vieira, Leandro M.', 5], ['Ryland, John S. & Holt, Rohan & Loxton, Jennifer', 3], ['Souto, Javier & Kaufmann, Manfred J. & Canning-Clode, João', 2], ['Taylor, Paul D. & Tan, Shau-Hwai Aileen', 1], ['Tompsett, Scott & Porter, Joanne S. & Taylor, Paul D.', 3], ['Other (1)', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=38)', 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);