I would like to change the default tools that holoviews gives after plotting something using bokeh as backend. From what I have read so far I can do this using Hooks but I haven't figure how. The instruction using bokeh should be something like this:
plot = figure(tools="pan,wheel_zoom,reset")
This is what I have but it doesn't work:
def hook_test(plot, element):
plot.state.tools = ["pan,wheel_zoom,reset"]
hv.Curve([1, 2, 3]).opts(finalize_hooks=[hook_test])