Rangeslider indicator markers don't update dynamically on range adjustments

I have a range slider that is dynamically updated with its values and bounds being changed depending on user thresholds. When I adjust the bounds for the slider but keep the low and high value the same, the markers don’t update their positions accordingly:

For example, with the current range slider layout:

If I update the maximum to a much larger number, the value indicator stays stuck in place:

Hi @matt.sd.watson

This looks like a bug - feel free to open an issue on GitHub. In the meantime, if you set “always_visible” to False, then it’s correct - but the tooltip only shows on hover.

dcc.RangeSlider(0, 30, value=[10, 15],
tooltip={“placement”: “top”, “always_visible”:False }, id=“slider”)

1 Like