function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Alfred W. Thomson & Lawrence M. Page', 1], ['Chavalit Vidthayanon & Heok Hee Ng', 2], ['Day, F.', 1], ['Fowler, Henry Weed', 1], ['He, M. J. & Chen, Y. - R.', 1], ['Heok Hee Ng', 18], ['Heok Hee Ng & Darrell J. Siebert', 6], ['Ng, Casey Keat Chuan & Lim, Teow Yeong & Ahmad, Amirrudin', 2], ['Ng, H. H. Tan H. H.', 5], ['Ng, Heok Hee', 6], ['Ng, Heok Hee & Kottelat, Maurice', 5], ['Ng, Heok Hee & Ng, Peter K. L.', 5], ['Ng, Heok Hee & Siebert, Darrell J.', 2], ['Popta, C. M. L.', 2], ['Vaillant, L. L.', 3], ['Other (12)', 12] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=72)', 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);