function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Bray, Rodney A. & Cribb, Thomas H.', 15], ['Bray, Rodney A. & Justine, Jean-Lou', 4], ['Fischthal, Jacob H. & Thomas, J. D.', 3], ['Gupta, S. P. & Gupta, R. C.', 4], ['Gupta, V. & Ahmad, J.', 8], ['Gupta, V. & Puri, M.', 4], ['Linton, E.', 4], ['Madhavi, R.', 5], ['Manter, Harold W.', 12], ['Parukhin, A M', 11], ['Ramadan, M. M.', 6], ['Reimer, Lothar W.', 7], ['Shen, J. - w.', 9], ['Srivastava, H. D.', 4], ['Yamaguti, S.', 23], ['Other (80)', 106] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=225)', 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);