function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['A. W', 159], ['Boustani, Mira & Rasmont, Pierre & Dathe, Holger H.', 67], ['Delphia, Casey M. & Griswold, Terry & Reese, Elizabeth G.', 21], ['Else, George R. & Bolton, Barry & Broad, Gavin R.', 66], ['Gardner, Joel & Gibbs, Jason', 64], ['Gibbs, Jason', 218], ['Gibbs, Jason & Ascher, John S. & Rightmyer, Molly G.', 86], ['Khodaparast, Razeyeh & Monfared, Alireza', 21], ['Lhomme, Patrick', 65], ['Murao, Ryuki', 51], ['Murao, Ryuki & Tadauchi, Osamu & Miyanaga, Ryoichi', 96], ['Portman, Zachary M. & Gardner, Joel & Lane, Ian G.', 93], ['Reese, Elizabeth G. & Burkle, Laura A. & Delphia, Casey M.', 45], ['Stephenson, Phillip L & Griswold, Terry L & Arduser, Michael S', 24], ['Zettel, Herbert & Ockermüller, Esther & Schoder, Sabine', 27], ['Other (44)', 256] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=1359)', 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);