function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Aqmal-Naser, Mohamad & Ali, Norsyafira Anis', 3], ['Hui, Tan Heok & Husana, Daniel Edison M.', 2], ['Hui, Tan Heok & Peng, Kelvin Lim Kok & Huan, Liew Jia', 2], ['Ikhwanuddin, Mat Esa Mohd & Amal, Mohammad Noor Azmai', 2], ['Kottelat, Maurice & Lim, Kelvin K. P.', 2], ['Ng, Casey Keat Chuan & Lim, Teow Yeong & Ahmad, Amirrudin', 3], ['Sulaiman, Zohrah & Hui, Tan Heok & Lim, Kelvin Kok Peng', 3], ['Wilkinson, Clare L. & Hui, Tan Heok', 1], ['Ye, Enqi & Xing, Yingchun & Zhang, Chunguang & Zhao, Yahui', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=19)', 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);