250592
Created using FusionCharts Suite XT - www.fusioncharts.com
by Nabajeet 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>
<!-- Multi-series 2D Single Y Combination Chart. -->
<div id="chart-container">FusionCharts will render here</div>
JavaScript
FusionCharts.ready(function () {
var cSatScoreChart = new FusionCharts({
type: 'msline',
renderAt: 'chart-container',
width: '400',
height: '250',
dataFormat: 'json',
dataSource: {
"chart": {
"caption": "LTE 1C Build Plan (MS149)",
"showLegend": "1",
"legendPosition": "BELOW",
"formatNumber": "1",
"formatNumberScale": "1"
},
"categories": [{
"category": [{
"label": "May '14"
}, {
"label": "Jun '14"
}, {
"label": "Jul '14"
}]
}],
"dataset": [{
"seriesName": "Metric",
"renderAs": "line",
"data": [{
"value": "25000"
}, {
"value": "25555"
}, {
"value": "25666"
}]
}, {
"seriesName": "Target",
"renderAs": "line",
"showValues": "0",
"anchorAlpha": "0",
"data": [{
"value": "30000"
}, {
"value": "30000"
}, {
"value": "30000"
}]
}],
"trendlines": [{
"line": [{
"startvalue": "25000",
"endvalue": "25666",
"color": "0000FF",
"displayvalue": "Trend"
}]
}],
"annotations": {
"groups": [{
"id": "total-label",
"items": [{
"id": "total-label-bg",
"type": "rectangle",
...