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. & Ngai, Nguyen Danh & Doan, Hung Dinh', 1], ['Dick, Matthew H. & Tilbrook, Kevin J. & Mawatari, Shunsuke F.', 1], ['Gerovasileiou, Vasilis & Rosso, Antonietta', 2], ['Judith L Winston', 3], ['Martino, Emanuela Di', 1], ['Ramalho, Laís V. & López-Fé, Carlos M. & Mateo-Ramírez, Angel', 1], ['Ramalho, Laís V. & Moraes, Fernando C. & Salgado, Leonardo T.', 1], ['Sonar, Mohan A. & Pawar, Ravi V. & Wayal, Dnyaneshwar V.', 2], ['Taylor, Paul D. & Tan, Shau-Hwai Aileen', 1], ['Winston, Judith E. & Vieira, Leandro M.', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=15)', 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);