I was hoping somebody else who actually uses the standard web pages would reply to you, but as a couple of days have passed without anyone else being helpful, and there was another release yesterday, that I have just updated to, I took a look at the relevant files in new release, and do my best to give you an answer below.
Compare
CumulusMX/interface/js/charts.js which feeds admin interface charts page
Code: Select all
series: [{
name: 'Temperature',
zIndex: 99
}, {
name: 'Dew Point'
}, {
name: 'Apparent'
}, {
name: 'Feels'
}, {
name: 'Wind Chill'
}, {
name: 'Heat Index'
}, {
name: 'Inside',
visible: false
}],
and (yesterday's build 3086 version of)
CumulusMX/webfiles/js/cumuluscharts.js
Code: Select all
series: [{
name: 'Temperature',
zIndex: 99
}, {
name: 'Dew Point'
}, {
name: 'Apparent'
}, {
name: 'Wind Chill'
}, {
name: 'Heat Index'
}, {
name: 'Inside',
visible: false
}],
The feels like highcharts code is missing from latter, in terms of series names.
I have not tried it, but you might be able to replace the latter by the former, as the json that uploads to the web site does contain the feels like data pairs ready for plotting,
of course you also need to change the code that reads the json file:
Code: Select all
$.ajax({
url: 'tempdata.json',
cache: false,
dataType: 'json',
success: function (resp) {
chart.hideLoading();
chart.series[0].setData(resp.temp);
chart.series[1].setData(resp.dew);
chart.series[2].setData(resp.apptemp);
chart.series[3].setData(resp.wchill);
chart.series[4].setData(resp.heatindex);
chart.series[5].setData(resp.intemp);
}
by adding
Code: Select all
chart.series[6].setData(resp.feelslike);
I stress I only think this should work, as I have not tried it, and don't have time to try it at present, but I am trying to be helpful, as nobody else will.