Nom: Philippou
Prénom: Constantinos
Surnom: Costa
// 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', 1], ['VIC par DEC', 3], ['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', 1], ['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 | Jared Hamman | KO (Punches) | 2011-12-10 | UFC 140 Jones vs Machida | 1 | 03:11 |
| Vic | Jorge Rivera | Decision (Split) | 2011-08-06 | UFC 133 Evans vs Ortiz | 3 | 05:00 |
| Def | Nick Catone | Decision (Unanimous) | 2011-03-19 | UFC 128 – Shogun vs. Jones | 3 | 05:00 |
| Vic | Uriah Hall | Decision (Majority) | 2011-02-04 | ROC 34 – Ring of Combat 34 | 3 | 04:00 |
| Vic | Aung La Nsang | TKO (Punches) | 2010-12-03 | ROC 33 – Ring of Combat 33 | 1 | 00:11 |
| NC | Marcus Finch | NC (Accidental Kick to the Groin) | 2010-10-23 | ROC 32 – Ring of Combat 32 | 2 | 02:47 |
| Vic | Victor Odonnell | Decision (Unanimous) | 2009-09-11 | ROC 26 – Ring of Combat 26 | 3 | 05:00 |
| Vic | Aaron Meisner | Submission (Rear-Naked Choke) | 2009-02-20 | ROC 23 – Ring of Combat 23 | 1 | 02:27 |
| Vic | John Doyle | TKO (Punches) | 2008-11-21 | ROC 22 – Ring of Combat 22 | 3 | 03:05 |
| Vic | Brendan Barrett | TKO (Doctor Stoppage) | 2008-09-12 | ROC 21 – Ring of Combat 21 | 1 | 03:29 |
| Vic | Tony Andreocci | KO (Punch) | 2008-06-27 | ROC 20 – Ring of Combat 20 | 1 | 00:22 |
| Def | Ricardo Romero | Decision (Split) | 2008-05-09 | ROC 19 – Ring of Combat 19 | 3 | 05:00 |


