Problem is, the axis are different. Would prefer to find the min/max for the set (current 67 and 70 respectively). And then set the min/max for all 6 charts to those values. Tested this with a manually set input number but no bueno.
be aware though that it can be very heavy on the dashboard/system, as those variables will be evaluated on each and every state change. In the above example, I figured t was safe to do so because the span is set only upon request every now and then.
However, if it is dynamic temp sensor, I don’t believe I would do so, especially not in the amount you are proposing there.
might be no harm trying though…
Petros suggestion would be your best bet: just set it identical for all, with a safe margin
Well yea, dynamically setting this is the point. Temps will vary 10-15 degrees F in a given day/week, so statically setting a range that wide to accommodate misses smaller short term trends.
Custom:Config is new to be and seems like the right idea. I am getting the sensor value to pull into template ok, but something (Apex?) is still choking on it.
could it be it needs it to be an actual number, and not a string (as the output of the template in fact would be?)
not sure if the JS notation here is strict or not, but you could give it a try to int it, see 7 ways to convert a String to Number in JavaScript - DEV Community