My hvplot has default pan and wheel zoom as way of zooming and moving the graph.
But I want box zoom to be the default in my graph.
How do I do this in hvplot or holoviews?
import numpy as np
import pandas as pd
import holoviews as hv
import hvplot
import hvplot.pandas
df = pd.DataFrame(data=np.random.normal(size=[50, 2]), columns=['a', 'b'])
df_plot = df.hvplot.scatter(x='a', y='b')