Nom: Craig
Prénom: Andrew
// 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', 4], ['VIC par AUTRE', 0], ['DÉF par KO', 0], ['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 | Kyle Noke | Decision (unanimous) | 2012-03-03 | UFC on FX: Alves vs. Kampmann | 3 | 05:00 |
| Vic | Eric Schambari | Decision (unanimous) | 2011-09-16 | LFC – Legacy Fighting Championship 8 | 3 | 05:00 |
| Vic | William Bush | TKO (punches) | 2011-04-09 | LFC – Legacy Fighting Championship 6 | 5 | 02:47 |
| Vic | Jon Kirk | Submission (triangle choke) | 2011-02-26 | IXFA – International Xtreme Fight Association | 2 | 01:04 |
| Vic | Josh Foster | Decision (unanimous) | 2010-12-04 | IXFA – International Xtreme Fight Association | 3 | 03:00 |
| Vic | Rodrigo Pinheiro | TKO (doctor stoppage) | 2010-09-02 | Bellator 27 | 3 | 02:53 |
| Vic | Antuan Williams | Decision (unanimous) | 2010-05-22 | USA MMA – Legends | 3 | 05:00 |


