在散景图之间共享x轴

时间:2018-08-20 13:49:03

标签: python bokeh

在matplotlib中,您可以像这样共享绘图之间的x轴:

plt.subplots(nrows=2, sharex=True)

我想在Bokeh中执行类似的操作,我将其中一个缩放,另一个将跟随,依此类推。如何在Bokeh中执行此操作?

1 个答案:

答案 0 :(得分:2)

这在《用户指南》的Linking Plots部分中进行了说明。您只需要共享范围对象:

p1 = figure()

# share just the x-range between these plots
p2 = figure(x_range=p1.x_range)