-
Hi, I noticed that when you use show_value together with rangebreaks the value is not shown if the right part of the graph lies in the range that is beinig suppressed by the rangebreak: A simple example just for demonstration, rangebreaks is not showing saterday and sunday:
On a weekday it shows: In the weekend it shows: Is there a way to prevent the hiding of the texttemplate so it is also shown in a rangebreak period? kind regards Martin |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
That's because show_value adds an extra trace with a single point at the end of the data. If the last data point is hidden by the range break, then it won't ve shown. The only option I see is to filter out all data points in the hidden part. entities:
entity: sensor.xyz
filters:
- filter: x.getDay() != 0 && x.getDay() != 6
show_value: true |
Beta Was this translation helpful? Give feedback.
-
Perfect! Thx!
|
Beta Was this translation helpful? Give feedback.
Perfect! Thx!