Я использую HvPlot, и он отлично работает, но я не знаю, как удалить стандартные инструменты «pan», «wheel_zoom» и «box_zoom». Мой код для HvPlot:
points = df.hvplot.line(x='x', y='y',
grid=True,
tools=['xpan', # move along x
'xwheel_pan', # move along x with wheel
'xwheel_zoom', # zoom on x with wheel
'xzoom_in', # zoom in on x
'xzoom_out', # zoom out on x
'crosshair', # show where the mouse is on axis
'xbox_zoom', # zoom on selection along x
'undo', # undo action
'redo'], # redo action
width=1200, height=550,
aggregator='any',
datashade=True)
У меня есть эта цифра:
введите описание изображения здесь