similar to matplotlib command ax.set_navigate(False)?
Below is a minimal example of using an ipython laptop.
from bokeh.plotting import figure
from bokeh.models import LinearAxis, Range1d
from bokeh.io import output_notebook, show
output_notebook()
s1=figure(width=250, plot_height=250, title=None, tools="pan, wheel_zoom")
s1.line([1, 2, 3], [300, 300, 400], color="navy", alpha=0.5)
s1.extra_y_ranges = {"foo": Range1d(start=1, end=9)}
s1.add_layout(LinearAxis(y_range_name="foo"), 'right')
s1.line([1, 2, 3], [4, 4, 1], color="firebrick", alpha=0.5, y_range_name="foo")
show(s1)
Is it possible to hold the second y axis in place when zooming and panning on another y axis?
Using the PanTool options did not help me with this problem.
Edit: Screenshot inserted:

The blue line is drawn on the first axis, the red on the second
If I zoom in, move around the x axis, I want the red line to stay in place.