FusionCharts - Gallery Example - Multi-Series 2D Single Y Combination Chart
Created using FusionCharts Suite XT - www.fusioncharts.com
by Moonmi Sonowal
HTML
<script src="http://static.fusioncharts.com/code/latest/fusioncharts.js"></script>
<script src="http://static.fusioncharts.com/code/latest/fusioncharts.charts.js"></script>
<script src="http://static.fusioncharts.com/code/latest/themes/fusioncharts.theme.fint.js"></script>
<!-- Multi-series 2D Single Y Combination Chart. -->
<div id="chart-container">FusionCharts will render here</div>
JavaScript
FusionCharts.ready(function () {
var salesAnlysisChart = new FusionCharts({
type: 'mscombi2d',
renderAt: 'chart-container',
width: '600',
height: '300',
dataFormat: 'json',
dataSource: {
"chart": {
"adjustDiv":"0",
"theme": "fint"
},
"categories": [{
"category": [{
"label": "00:00-01:00"
}, {
"label": "01:00-02:00"
}, {
"label": "02:00-03:00"
}, {
"label": "03:00-04:00"
}, {
"label": "04:00-05:00"
}, {
"label": "05:00-06:00"
}, {
"label": "06:00-07:00"
}, {
"label": "07:00-08:00"
}, {
"label": "08:00-09:00"
}, {
"label": "09:00-10:00"
}, {
"label": "10:00-11:00"
}, {
"label": "11:00-12:00"
}, {
"label": "12:00-13:00"
}, {
"label": "13:00-14:00"
}, {
"label": "14:00-15:00"
}, {
"label": "15:00-16:00"
}, {
"label": "16:00-17:00"
}, {
"label": "17:00-18:00"
}, {
"label": "18:00-19:00"
}, {
"label": "19:00-20:00"
}, {
"label": "20:00-21:00"
}, {
"label": "21:00-22:00"
}, {
"label": "22:00-23:00"
}, {
"label": "23:00-00:00"
}]
}],
"dataset": [{
...