new to ploty so there probably already is an existing solution.
I'm trying to place the current value to the right of the thermometer.
my initial hack was using Custom scales that actually places it to the left
scale = {"start": min, "interval": 10, "labelInterval": 2, "custom": {}} scale["custom"][f"{round(value,1)}"] = f"<----{round(value,1)}"
is there a more elegant way to accomplish this?