Nom: Melancon
Prénom: Brian
// 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', 1], ['VIC par DEC', 1], ['VIC par AUTRE', 0], ['DÉF par KO', 0], ['DÉF par SOU', 0], ['DÉF par DEC', 2], ['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 | Isaac Vallie-Flagg | Decision (Split) | 2011-06-18 | Strikeforce Overeem vs Werdum | 3 | 05:00 |
| Vic | Derrick Krantz | Decision (Unanimous) | 2011-01-29 | Legacy – FC 4 | 3 | 05:00 |
| Vic | Todd Moore | TKO (Punches) | 2010-07-31 | LP – Legacy Promotions | 1 | 01:00 |
| Def | Adam Schindler | Decision (Unanimous) | 2010-05-27 | BFC – Bellator Fighting Championships 20 | 3 | 05:00 |
| Vic | Jarrett Jones | TKO (Punches) | 2009-06-11 | SCMMA 1 – Battle of the Texas Titans | 1 | 00:00 |
| Vic | Kenneth Battle | Submission (Punches) | 2009-05-23 | URC 4 – Urban Rumble Championships | 1 | 01:35 |
| Vic | Adrian Barco | TKO (Punches) | 2009-01-24 | URC 3 – Urban Rumble Champioships | 1 | 01:35 |

