function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Almeida, Ana C. S. & Souza, Facelucia B. C. & Farias, Jamile', 1], ['Dick, Matthew H. & Grischenko, Andrei V.', 4], ['Dick, Matthew H. & Ngai, Nguyen Danh & Doan, Hung Dinh', 2], ['Dick, Matthew H. & Tilbrook, Kevin J. & Mawatari, Shunsuke F.', 1], ['Gerovasileiou, Vasilis & Rosso, Antonietta', 4], ['Grischenko, Andrei V. & Dick, Matthew H. & Mawatari, Shunsuke F.', 1], ['Judith L Winston', 4], ['Martino, Emanuela Di & Taylor, Paul D.', 2], ['Ramalho, Laís V. & Moraes, Fernando C. & Salgado, Leonardo T.', 2], ['Ramalho, Laís V. & Muricy, Guilherme & Taylor, Paul D.', 1], ['Ramalho, Laís V. & Taylor, Paul D. & Moraes, Fernando Coreixas', 2], ['Reverter-Gil, Oscar & Fernández-Pulpeiro, Eugenio', 1], ['Taylor, Paul D. & Tan, Shau-Hwai Aileen', 4] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=29)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 13, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);