Nom: Easton
Prénom: Mike
// 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', 3], ['VIC par SOU', 2], ['VIC par DEC', 6], ['VIC par AUTRE', 0], ['DÉF par KO', 1], ['DÉF par SOU', 0], ['DÉF par DEC', 0], ['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 |
| Vic | Jared Papazian | Decision (Majority) | 2012-01-20 | UFC on FX 1 | 3 | 05:00 |
| Vic | Chase Beebe | Decision (Split) | 2009-10-03 | UWC 7 – Redemption | 5 | 05:00 |
| Vic | Josh Ferguson | Submission (Guillotine Choke) | 2009-04-25 | UWC 6 – Capital Punishment | 1 | 04:06 |
| Vic | Justin Robbins | Submission (Guillotine Choke) | 2009-02-21 | UWC 5 – Man O War | 3 | 04:44 |
| Vic | John Dodson | Decision (Split) | 2008-10-11 | UWC 4 – Confrontation | 3 | 05:00 |
| Vic | Gerald Lovato | KO (Punch) | 2008-04-26 | UWC 3 – Invasion | 1 | 02:48 |
| Def | Reynaldo Duarte | TKO | 2007-09-29 | CSC – Combat Sport Challenge | 1 | 01:36 |
| Vic | Hudson Rocha | KO (Punch) | 2006-11-30 | Fury FC 2 – Final Combat | 2 | 00:45 |
| Vic | Rick Desper | Decision (Unanimous) | 2006-04-29 | RF 12 – Return to Boardwalk Hall | 3 | 04:00 |
| Vic | Jay Isip | TKO (Punches) | 2004-04-03 | RF 6 – Reality Fighting 6 | 2 | 01:42 |
| Vic | Jason Taylor | Decision (Unanimous) | 2004-01-31 | CSC – Combat Sport Challenge | 2 | 05:00 |
| Vic | Anibal Torres | Decision (Unanimous) | 2003-02-08 | RF 3 – Reality Fighting 3 | 3 | 05:00 |


