A candlesticks graph with whiskers (and/or whiskerbars) would be ideal for those day/night avg/max/min graphs currently used in 28days and yearly graphs.
Sadly, the current source code doesn't allow this as candlesticks graphs need 4 y-values per row (NightAvg, NightMin, DayMax, DayAvg) and the Plot.py only writes 1 values per row.
I'm not sure but it might be sufficient if the <ycalc> field would allow a tuple to specify multiple data values. And the using 1:2 string for gnuplot should be adapted accordingly.
A candlesticks graph with whiskers (and/or whiskerbars) would be ideal for those day/night avg/max/min graphs currently used in 28days and yearly graphs.
Those look like these: http://gnuplot.sourceforge.net/demo/candlesticks.html . Or this one:
Sadly, the current source code doesn't allow this as candlesticks graphs need 4 y-values per row (NightAvg, NightMin, DayMax, DayAvg) and the Plot.py only writes 1 values per row.
I'm not sure but it might be sufficient if the
<ycalc>
field would allow a tuple to specify multiple data values. And theusing 1:2
string for gnuplot should be adapted accordingly.