function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Allison, Patrick F. & Lieb, David A. & Loughman, Zachary J.', 1], ['Foltz, David A. & Sadecky, Nicole M. & Myers, Greg A.', 1], ['Jones, Danny R. & Eversole, Arnold G.', 3], ['Loughman, Zachary J.', 1], ['Loughman, Zachary J. & Fagundo, Raquel A. & Lau, Evan', 1], ['Loughman, Zachary J. & Henkanaththegedara, Sujan M.', 3], ['Loughman, Zachary J. & Simon, Thomas P.', 4], ['Loughman, Zachary J. & Thoma, Roger F. & Fetzner Jr, James W.', 2], ['Loughman, Zachary J. & Welsh, Stuart A. & Thoma, Roger F.', 2], ['Loughman, Zachary J. & Williams, Bronwyn W.', 1], ['Morehouse, Reid L. & Tobler, Michael', 4], ['Perkins, Michael A. & Williams, Bronwyn W. & Russ, William T.', 3], ['Schuster, Guenter A. & Taylor, Christopher A.', 1], ['Schuster, Guenter A. & Taylor, Christopher A. & Adams, Susan B.', 1], ['Taylor, Christopher A. & Soucek, David J. & Organ, Edward L.', 1], ['Other (2)', 2] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=31)', 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);