Search found 1 match

by glipman
Sunday 28 November 2021 14:51
Forum: Utility
Topic: Change GAS graph from Column to line graph
Replies: 6
Views: 965

Re: Change GAS graph from Column to line graph

You may apply a tiny hack to domoticz\www\js\domoticz.js on your webserver.

In function ShowCounterLog() around line 5902 change line
type: 'column',
to
type: 'spline',
and in line 5907 change
$.getJSON("json.htm?type=graph&sensor=counter&idx=" + id + "&range=day",
to
$.getJSON("json.htm ...