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.