散景:如何禁用鼠标左键单击滚动?
Bokeh: how to disable left mouse click scrolling?
一个空网格的基本代码示例,但它可以应用于所有图形:
from bokeh.plotting import figure, show, output_file
output_file('test.html')
p = figure(x_range=(0,1), y_range=(0,1), toolbar_location=None)
show(p)
当我在左键单击左键的同时移动鼠标光标时,x 和 y 轴移动。在我的项目中,我将图形放在网格中,但是当我用鼠标移动图形时图形会移动,这很烦人,我希望网格保持静止。感谢您的帮助。
解决方法在这里:https://docs.bokeh.org/en/latest/docs/user_guide/tools.html#setting-the-active-tools
我添加这一行:
p.toolbar.active_drag = None
一个空网格的基本代码示例,但它可以应用于所有图形:
from bokeh.plotting import figure, show, output_file
output_file('test.html')
p = figure(x_range=(0,1), y_range=(0,1), toolbar_location=None)
show(p)
当我在左键单击左键的同时移动鼠标光标时,x 和 y 轴移动。在我的项目中,我将图形放在网格中,但是当我用鼠标移动图形时图形会移动,这很烦人,我希望网格保持静止。感谢您的帮助。
解决方法在这里:https://docs.bokeh.org/en/latest/docs/user_guide/tools.html#setting-the-active-tools
我添加这一行:
p.toolbar.active_drag = None