Nom: Burrell
Prénom: Nah-Shon
// 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', 5], ['VIC par SOU', 0], ['VIC par DEC', 1], ['VIC par AUTRE', 0], ['DÉF par KO', 0], ['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 |
| Vic | Joe Ray | Decision (Unanimous) | 2011-06-18 | Strikeforce Overeem vs Werdum | 3 | 05:00 |
| Vic | Daryl Harris | KO (Knee) | 2011-05-20 | CFFC 8 – Seek and Destroy | 2 | 01:32 |
| Vic | Craig Thieme | TKO (Punches) | 2011-02-05 | CFFC 6 – The Return | 3 | 03:34 |
| Vic | Robert Corpora | TKO (Punches) | 2010-11-05 | AFL – Asylum Fight League 32 | 2 | 03:34 |
| Def | Christopher Curtis | Decision (Unanimous) | 2010-10-01 | Xtreme Caged Combat – Hostile Intent | 3 | 05:00 |
| Vic | Juan Garcia | TKO (Punches) | 2010-07-16 | Xtreme Caged Combat – Onslaught | 1 | 04:24 |
| Vic | Brad Pole | TKO (Punches) | 2010-06-19 | Jake the Snake Promotions – Cage Time 2 | 1 | 03:28 |


