Nom: Le
Prénom: Cung
// 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', 7], ['VIC par SOU', 0], ['VIC par DEC', 0], ['VIC par AUTRE', 0], ['DÉF par KO', 2], ['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 |
| Def | Wanderlei Silva | TKO (Strikes) | 2011-11-19 | UFC 139 | 2 | 04:49 |
| Vic | Scott Smith | KO (Kick to the Body) | 2010-06-26 | Strikeforce / M-1 Global – Fedor vs. Werdum | 2 | 01:46 |
| Def | Scott Smith | KO (Punches) | 2009-12-19 | Strikeforce – Evolution | 3 | 03:25 |
| Vic | Frank Shamrock | TKO (Broken Arm) | 2008-03-29 | Strikeforce – Shamrock vs. Le | 3 | 05:00 |
| Vic | Sam Morgan | KO (Kick to the Body) | 2007-11-16 | Strikeforce – Four Men Enter, One Man Survives | 3 | 01:58 |
| Vic | Tony Fryklund | KO (Punch) | 2007-06-22 | Strikeforce-EliteXC – Shamrock vs. Baroni | 3 | 00:25 |
| Vic | Jason Von Flue | TKO (Doctor Stoppage) | 2006-12-08 | Strikeforce – Triple Threat | 1 | 00:43 |
| Vic | Brian Warren | TKO (Punches) | 2006-06-09 | Strikeforce – Revenge | 1 | 04:19 |
| Vic | Mike Altman | KO (Punch) | 2006-03-10 | Strikeforce – Shamrock vs. Gracie | 1 | 03:51 |


