function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Angulo, Arturo', 3], ['Aqmal-Naser, Mohamad & Ali, Norsyafira Anis', 2], ['Bleeker, Pieter', 7], ['Chang, Y. - W. & Wu, C. - T.', 2], ['Chaux, J. & Fang, P. - W.', 1], ['Fowler, Henry Weed', 5], ['Gustiano, R. & Teugels, G. G. & Pouyaud, L.', 3], ['Hui, Tan Heok & Peng, Kelvin Lim Kok & Huan, Liew Jia', 2], ['Ng, Casey Keat Chuan & Lim, Teow Yeong & Ahmad, Amirrudin', 3], ['Ng, H. H. Tan H. H.', 6], ['Pouyaud, L. & Gustiano, R. & Teugels, G. G.', 2], ['Roberts, Tyson R.', 2], ['Roberts, Tyson R. & Vidthayanon, Chavalit', 3], ['Sauvage, H. E.', 3], ['Smith, H. M.', 3], ['Other (17)', 17] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=64)', 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);