function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Ahl, E.', 4], ['Aqmal-Naser, Mohamad & Ali, Norsyafira Anis', 6], ['Brittan, M. R.', 6], ['Day, F.', 2], ['Duncker, G.', 4], ['Fowler, Henry Weed', 3], ['Hui, Tan Heok & Peng, Kelvin Lim Kok & Huan, Liew Jia', 3], ['Kottelat, Maurice', 5], ['Kottelat, Maurice & Chu, X. - L.', 2], ['Lumbantobing, Daniel N.', 5], ['Meinken, H.', 2], ['Ng, Casey Keat Chuan & Lim, Teow Yeong & Ahmad, Amirrudin', 11], ['Ng, Heok Hee & Kottelat, Maurice', 2], ['Sulaiman, Zohrah & Hui, Tan Heok & Lim, Kelvin Kok Peng', 11], ['Wilkinson, Clare L. & Hui, Tan Heok', 5], ['Other (20)', 21] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=92)', 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);