function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Delphia, Casey M. & Griswold, Terry & Reese, Elizabeth G.', 12], ['Genaro, Julio A. & Franz, Nico M.', 2], ['Gibbs, Jason & Ascher, John S. & Rightmyer, Molly G.', 16], ['Mahlmann, Thiago & Hipolito, Juliana & de Oliveira, Favizia F.', 2], ['McCabe, Lindsie M & Chesshire, Paige R & Smith, David R', 9], ['Portman, Zachary M. & Gardner, Joel & Lane, Ian G.', 29], ['RAMOS, KELLI S. & KAWADA, RICARDO & BRANDÃO, CARLOS ROBERTO F.', 8], ['Reese, Elizabeth G. & Burkle, Laura A. & Delphia, Casey M.', 9], ['Stephenson, Phillip L & Griswold, Terry L & Arduser, Michael S', 20], ['Vivallo, Felipe', 2] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=109)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 10, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);