function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Badli-Sham, Baizul Hafsyam & Syafiq, Muhamad Fatihah', 9], ['Chan, Kin Onn & Muin, Mohd Abdul & Anuar, Shahrul & Andam, Joel', 4], ['Dinesh, K. P. & Channakeshavamurthy, B. H. & Deepak, P.', 3], ['Duszynski, Donald W. & Bolek, Matthew G. & Upton, Steve J.', 3], ['Figueroa, Alex & Low, Martyn E. Y. & Lim, Kelvin K. P.', 10], ['Garg, Sonali & Biju, S. D.', 5], ['Garg, Sonali & Chandrakasan, Sivaperuman & Gokulakrishnan, G.', 3], ['Hakim, Jonathan & Trageser, Scott J. & Ghose, Animesh', 4], ['Koehler, Gunther & Vargas, Joseph & Than, Ni Lar', 3], ['Mudke, Madhushri & Gururaja, K. V. & Aravind, Neelvara', 6], ['Mulcahy, Daniel G. & Lee, Justin L. & Miller, Aryeh H.', 9], ['O, Kyle A. & Connell & Aryal, Prakash C. & Sherchan, Adarsh M.', 4], ['Prasad, Vishal Kumar & Gautam, Kumudani Bala', 7], ['TeyniƩ, Alexandre & David, Patrick & Ohler, Annemarie', 4], ['Zijia, Hong & Anuar, Shahrul & Grismer, L. Lee', 6], ['Other (53)', 71] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=151)', 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);