How to disable continuous update on a slider widget?

What is the argument to make it such that a slider widget in holoviews-DynamicMap/Panel only updates after the mouse click has been released?

Is there something like:
int_slider = pn.widgets.IntSlider(name='Integer Slider', start=0, end=8, step=2, value=4, continuous_update=False)

I don’t want them continuously updating my graphs as I slide because there’s far too much latency.

2 Likes

Hi. I think you are looking for value_throttled. I have never used it myself though. The docs here give some explanation.

1 Like