我正在尝试执行此操作,并且现在似乎可以解决此问题。您可以将figure.yaxis.fixed_location
属性设置为零。
作为使用bokeh 1.0.4的明确示例:
# ... bokeh imports
p = figure(plot_width=300, plot_height=300)
p.patch([-1,0,1], [-1,1,0.5], alpha=0.5)
p.yaxis.fixed_location = 0
show(p)
返回数字:
您也可以在x轴或两个轴上都这样做。