Nom: Gaudinot
Prénom: Louis
// Load the Visualization API and the piechart package. google.load('visualization', '1.0', {'packages':['corechart']});
// Set a callback to run when the Google Visualization API is loaded. google.setOnLoadCallback(drawChart);
// Callback that creates and populates a data table, // instantiates the pie chart, passes in the data and // draws it. function drawChart() {
// Create the data table. var data = new google.visualization.DataTable(); data.addColumn('string', 'Topping'); data.addColumn('number', 'Slices'); data.addRows([ ['VIC par KO', 2], ['VIC par SOU', 1], ['VIC par DEC', 2], ['VIC par AUTRE', 0], ['DÉF par KO', 1], ['DÉF par SOU', 0], ['DÉF par DEC', 1], ['DÉF par AUTRE', 0], ['No Contest', 0], ['Draw', 0], ['Autres', 0] ]);
// Set chart options var options = {'title':'Victoires/Défaites', 'width':600, 'height':300, 'is3D':true};
// Instantiate and draw our chart, passing in some options. var chart = new google.visualization.PieChart(document.getElementById('chart_div')); chart.draw(data, options); }
| Res | Versus | Méthode | Date | Gala | Rd | Temps |
| Def | Johnny Bedford | TKO (Knees) | 2011-12-03 | TUF 14 | 3 | 01:58 |
| Vic | Jessie Riggleman | Submission (Guillotine Choke) | 2010-09-24 | ROC 31 – Ring of Combat 31 | 1 | 04:43 |
| Vic | Tuan Pham | KO (Punch) | 2010-02-19 | ROC 28 – Ring of Combat 28 | 1 | 01:09 |
| Vic | Nate Williams | Decision (Unanimous) | 2009-11-20 | ROC 27 – Ring of Combat 27 | 3 | 04:00 |
| Vic | Jeff Cressman | TKO (Punches) | 2009-09-11 | ROC 26 – Ring of Combat 26 | 2 | 00:24 |
| Def | Nick Cottone | Decision (Unanimous) | 2009-06-12 | ROC 25 – Ring of Combat 25 | 2 | 04:00 |
| Vic | Chris Aquino | Decision (Unanimous) | 2009-04-17 | ROC 24 – Ring of Combat 24 | 2 | 04:00 |

