Nom: Head
Prénom: James
// 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', 4], ['VIC par SOU', 2], ['VIC par DEC', 1], ['VIC par AUTRE', 0], ['DÉF par KO', 0], ['DÉF par SOU', 1], ['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 |
| Def | Nick Ring | Submission (Rear Naked Choke) | 2011-06-11 | UFC 131: Dos Santos vs Carwin | 3 | 03:33 |
| Vic | Gerald Harris | Decision (Unanimous) | 2011-02-25 | Xtreme Fight Night 2 – Harris vs. Head | 3 | 05:00 |
| Vic | Bill Albrecht | TKO (Punches) | 2010-06-25 | BB – Bricktown Brawl 5 | 1 | 01:46 |
| Def | Jesse Forbes | Decision (Unanimous) | 2009-08-22 | PB MMA – Live Saturday Night | 3 | 05:00 |
| Vic | Chris Henning | TKO (Punches) | 2008-09-27 | TAP Entertainment – Ultimate Fight Night 3 | 1 | 02:20 |
| Vic | Lee McKibbin | Submission (Triangle Choke) | 2008-03-09 | CW 9 – Max Extreme Fighting | 2 | 00:00 |
| Vic | Eric Bradley | TKO (Punches) | 2007-09-28 | MOTC 16 – Masters of the Cage 16 | 2 | 01:47 |
| Vic | Ruben Escamilla | Submission | 2007-06-23 | MOTC 14 – Masters of the Cage 14 | 1 | 02:12 |
| Vic | Chance Fine | TKO (Punches) | 2006-12-02 | MOTC 7 – Masters of the Cage 7 | 1 | 01:02 |


