function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Berry, Jocelyn Asha Dr.', 3], ['Broad, Gavin R. & Shaw, Mark R. & Godfray, H. Charles J.', 78], ['Fischer, M.', 2], ['Fischer, M. & Tormos, J. & Pardo, X. & J. D', 8], ['Gadallah, Neveen S. & Ghahari, Hassan', 5], ['Ghahari, H. & Fischer, M. & Cetin, O. & Beyarslan, A.', 1], ['Ghahari, H. & Fischer, M. & K. J & O. C & Beyarslan, A.', 1], ['Koponen, Martti & Peris-Felipo, Francisco Javier', 1], ['Munk, Thorkild & Peris-Felipo, Francisco Javier', 4], ['Peris-Felipo, Francisco Javier & Belokobylskij, Sergey A', 50], ['Peris-Felipo, Francisco Javier & Belokobylskij, Sergey A.', 77], ['Peris-Felipo, Frаncisco Jаvier & Belokobylskij, Sergey А.', 23], ['Samin, Najmeh & Ghahari, Hassan & S, Neveen & Monaem, R.', 2], ['Singh, Longjam Roni Kumar & Chandra, Kailash & Gupta, Devanshu', 1], ['Verheyde, Fons & Jacobs, JEffrEY & Dekoninck, WOUTEr', 1], ['Other (1)', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=258)', 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);