-
Hi! I can not figure out how to configure rangebreaks (also explained here). My use case is the following. I have the sensor that provides data very sparsely (max 2 times per day, usually 2-3 times per week). I am not interested in the gaps between updates, I'm interested in comparing subsequent readouts. I think it would need to be something like this:
I tried alternative option, which works kind-of OK, though it hinders time-panning capabilities:
Also, perhaps I should use lambda and x,y mapping... I'd appreciate any hint. Thanks, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Hm... just realized that if I would want also to plot 1 month or 1 year of data, I'd need to store data somewhere else than in the Still looking forward to get any hints wrt |
Beta Was this translation helpful? Give feedback.
-
Hi Joc, layout:
xaxis:
rangebreaks:
- pattern: day of week
bounds: # this will hide Saturdays and Sundays.
- sat
- mon Regarding "older" data, try using long term statistics: - entity: sensor.thing
statistic: mean More here |
Beta Was this translation helpful? Give feedback.
Hi Joc,
I didn't know about rangebreaks, nice finding!
I played with it a bit and I first missed the fact that rangebreaks is actually an array:
Regarding "older" data, try using long term statistics:
More here