I'm retrieving data using ThingSpeak API. I want to show data in fusion chart. How to show dynamic data in the charts? This code working for other 3rd party APIs but not with this API.
sample data:
172.70
API:
https://api.thingspeak.com/channels/23037xxx/fields/field1/last?api_key=EG628M4J9SP76xxx
<script>
FusionCharts.ready(function() {
LoadChart();
});
function LoadChart() {
$.ajax({
url: 'https://api.thingspeak.com/channels/230xxx/fields/field1/last?api_key=EG628M4J9SP76xxx', // local address
type: 'GET',
crossDomain: true,
success: function(data) {
if (data.success) {
var chlorine = data;
var phfusioncharts = new FusionCharts({
type: 'angulargauge',
renderAt: 'ph-container',
width: '450',
height: '300',
dataFormat: 'json',
dataSource: {
"chart": {
"caption": "Chlorine ",
"lowerLimit": "0",
"upperLimit": "14",
"showValue": "1",
"valueBelowPivot": "1",
"theme": "fint"
},
"colorRange": {
"color": [{
"minValue": "0",
"maxValue": "5",
"code": "#6baa01"
}, {
"minValue": "5",
"maxValue": "10",
"code": "#f8bd19"
}, {
"minValue": "10",
"maxValue": "14",
"code": "#e44a00"
}]
},
"dials": {
"dial": [{
"value": chlorine
}]
}
}
});
phfusioncharts.render();
}
}
});
}
</script>
</head>
<body>
<table class="">
<tr>
<td>
<div id="ph-container" style="float:left;"></div>
</td>
</tr>
</table>