Spline issue
Created using FusionCharts Suite XT - www.fusioncharts.com
by Nabajeet Sonowal
March 26, 2015
HTML
<script src="http://static.fusioncharts.com/code/latest/fusioncharts.js"></script>
http://jsfiddle.net/fusioncharts/9C9pj/#fork<!-- Single-Series Spline 2D Chart showing the total footfall in Bakersfield Central store for last week -->
<div id="chart-container">FusionCharts will render here</div>
JavaScript
FusionCharts.ready(function () {
var footfallChart = new FusionCharts({
"type": "spline",
"dataFormat": "json",
"renderAt": "chart-container",
"width": "500",
"height": "300",
"dataSource": {
"chart": {
"showvalues": "0",
"yaxisminvalue": "0",
"setadaptiveymin": "0"
},
"categories": [{
"category": [{
"label": "Jan"
}, {
"label": "Feb"
}, {
"label": "Mar"
}, {
"label": "Apr"
}, {
"label": "May"
}, {
"label": "Jun"
}, {
"label": "Jul"
}, {
"label": "Aug"
}, {
"label": "Sep"
}, {
"label": "Oct"
}, {
"label": "Nov"
}, {
"label": "Dec"
}]
}],
"dataset": [{
"data": [{
"value": "1127654"
}, {
"value": "0"
}, {
"value": "5"
}, {
"value": "0"
}, {
"value": "1324454"
}, {
"value": "1357654"
}, {
"value": "1296234"
}, {
"value": "1359456"
}, {
"value": "1391565"
}, {
"value": "1414454"
}, {
"value": "1671565"
}, {
"value": "1134454"
}]
}, {
"data": [{
...