Is it possible to invert the value range of a dashboard graph? I am graphing the depth of water in my well (template sensor in ft), and to mimic how it looks down in the well, the higher the number, the lower it should be on the Y axis.
As a workaround, I tried this, but it always displays as “0 ft”. Maybe ft can’t be negative.
- platform: template
sensors:
well_depth_neg:
unit_of_measurement: "ft"
value_template: >
{{ states('sensor.well_watcher')*-1 }}