如何使散景工具栏工具默认处于非活动状态

问题描述 投票:5回答:2

有没有办法让工具栏中的所有工具都无效?在IPython笔记本中滚动时,默认激活平移和滚轮缩放按钮会适得其反。

python bokeh
2个回答
6
投票

以下是有关在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 

0
投票

不确定您是否找到了答案,但是您想在图函数中定义如下工具:

p = bp.figure(title='[your title]',tools='')
© www.soinside.com 2019 - 2024. All rights reserved.