Nom: Elliott
Prénom: Tim
// 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', 4], ['VIC par DEC', 1], ['VIC par AUTRE', 0], ['DÉF par KO', 1], ['DÉF par SOU', 1], ['DÉF par DEC', 0], ['DÉF par AUTRE', 0], ['No Contest', 0], ['Draw', 1], ['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 | Josh Rave | Submission | 2012-03-30 | RFA 2 | 1 | 00:28 |
| Vic | Jens Pulver | KO | 2011-12-16 | RFA 1 | 2 | 02:12 |
| Vic | Kashif Solarin | Submission | 2011-05-21 | Cowboy MMA | 1 | 00:57 |
| Vic | John McDowell | TKO | 2011-02-26 | AOWCF | 1 | 02:56 |
| Vic | Victor Dominguez | Decision | 2010-10-22 | C3 Fights | 3 | 05:00 |
| Vic | Cody Fuller | Submission | 2010-07-25 | BB 5 | 3 | 02:34 |
| Vic | Michael Casteel | Submission | 2010-04-02 | BB 4 | 1 | 02:01 |
| Vic | Victor Veloquio | KO | 2009-12-11 | BB 3 | 1 | 00:33 |
| Def | Jacky Bryant | TKO | 2009-08-28 | BB 2 | 1 | 00:52 |
| Def | Shane Howell | Submission | 2009-06-27 | HFN | 3 | 02:25 |
| Nul | Jerod Spoon | Draw | 2009-05-08 | BB 1 | 3 | 05:00 |

