function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Ascher, John S. & Engel, Michael S.', 1], ['Delphia, Casey M. & Griswold, Terry & Reese, Elizabeth G.', 4], ['Gibbs, Jason & Ascher, John S. & Rightmyer, Molly G.', 10], ['Griswold, Terry & Miller, Wensdae', 7], ['Kuhlman, Marirose & Burrows, Skyler', 2], ['McCabe, Lindsie M & Chesshire, Paige R & Smith, David R', 4], ['Portman, Zachary M. & Gardner, Joel & Lane, Ian G.', 17], ['Portman, Zachary M. & Griswold, Terry', 5], ['Portman, Zachary M. & Griswold, Terry & Pitts, James P.', 3], ['Portman, Zachary M. & Neff, John L. & Griswold, Terry', 22], ['Stephenson, Phillip L & Griswold, Terry L & Arduser, Michael S', 4] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=79)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 11, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);