I have this app:
We use sliders as inputs. Changing a slider value causes a multi-second computation to happen and then the graph updates, thus the sliders updatemode is set to mouseup. It is very difficult to set the sliders to the exact value you desire because there is no live feedback of the current hover location. I’d like to update the number in the slider header based on an updatemode drag but retain updatemode mouseup for updating the plot. This would allow the user to set the slider to the exact value they desire.
I haven’t been able to figure out how to do this. Is it possible? Or are there alternative methods to achieving slider location feedback for the user?
One alternative option would be to add a button for updating the plot and detach the sliders from the plot callback, but it is nice not to have to include an extra GUI feature.