function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Araújo, Diogo & Alves, Marccus', 2], ['Gaikwad, Sayajirao & Gore, Ramchandra & Randive, Sonali', 2], ['Gaikwad, Sayajirao P. & Gore, Ramchandra D. & Randive, Sonali D.', 2], ['Gore, Ramchandra & Gaikwad, Sayajirao', 22], ['Jarvis, Charlie', 14], ['Lee, Jong-Won & Yun, Ho-Geun & Hwang, Tae Young & Kim, Kyungmin', 1], ['Monteiro, Francisca & Costa, Esperança Da & Kissanga, Raquel', 2], ['Nacoulma, Blandine M. I. & Schmidt, Marco & Hahn, Karen', 7], ['Zhou, Ya-Dong & Mwachala, Geoffrey & Hu, Guang-Wan', 5] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=57)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 9, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);