有没有办法让工具栏中的所有工具都无效?在IPython笔记本中滚动时,默认激活平移和滚轮缩放按钮会适得其反。
以下是有关在bokeh 0.12.3上设置活动工具的文档的链接:http://bokeh.pydata.org/en/latest/docs/user_guide/tools.html#setting-the-active-tools。
在您定义图形的情况下,您只需将active_drag和active_scroll设置为None即可。例如:
from bokeh.plotting import figure
fig = figure(active_drag=None, active_scroll=None) # no active tools by default
不确定您是否找到了答案,但是您想在图函数中定义如下工具:
p = bp.figure(title='[your title]',tools='')