function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Branch, M. L. & Hayward, P. J.', 3], ['Dick, Matthew H. & Grischenko, Andrei V. & Mawatari, Shunsuke F.', 4], ['D’Hondt, J. - L.', 1], ['Gerovasileiou, Vasilis & Rosso, Antonietta', 24], ['Grischenko, Andrei V. & Dick, Matthew H. & Mawatari, Shunsuke F.', 1], ['Hayward, Peter J. & Winston, Judith E.', 3], ['Jain, Sudhanshi S. & Gordon, Dennis P. & Huang, Danwei', 1], ['López-Gappa, Juan & Liuzzi, María G. & Castro, Karen L.', 3], ['Martha, Silviu O. & Scholz, Joachim & Niebuhr, Birgit', 1], ['Martino, Emanuela Di', 4], ['McCuller, M. I. & Carlton, J. T. & Geller, J. B.', 1], ['Mead, A. & Carlton, J. T. & Griffiths, C. L. & Rius, M.', 1], ['Ramalho, Laís V. & Moraes, Fernando C. & Salgado, Leonardo T.', 1], ['Tasso, Vicente & El Haddad, Mustapha & Assadi, Carolina', 1], ['Vieira, Leandro M & Winston, Judith Ellen', 9], ['Other (1)', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=59)', 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);