File "dev.php"
Full Path: /home/analogde/www/download/CHESS_2022/dev.php
File size: 1.03 KB
MIME-type: text/x-php
Charset: utf-8
<?php
?>
<div id="container"></div>
<script src="Charts_2022/js/fusioncharts.js"></script>
<script>
FusionCharts.ready(function() {
var revenueChart = new FusionCharts({
type: 'column2d',
renderAt: 'container',
id: 'myChart',
width: '500',
height: '350',
dataFormat: 'json',
dataSource: {
"chart": {
"caption": "Classement ELO",
"subcaption": "",
"xAxisName": "Joueurs",
//"yFormatNumberScale": "0",
"formatNumberScale": "0",
"yAxisName": "ELO",
"numberPrefix": "",
"theme": "fusion",
//Manually setting y-axis upper and lower limit
"yAxisMaxValue": "2000",
"yAxisMinValue": "1000"
},
"data": [{
"label": "Henrique",
"value": "1625"
}, {
"label": "Bob",
"value": "1478"
}, {
"label": "lolo",
"value": "1455"
}, {
"label": "Lulu",
"value": "1247"
}]
}
}).render();
});
</script>