Why isnt Bokeh generating extra y ranges here?
问题 My Bokeh version is 0.12.13 and Python 3.6.0 I modified the example code available here: https://docs.bokeh.org/en/latest/docs/user_guide/plotting.html I have just tried to add one extra y range. from bokeh.plotting import output_file, figure, show from bokeh.models import LinearAxis, Range1d x = [1,2,3,4,5] y = [1,2,3,4,5] y2 = [10,9,8,7,6] y3 = [23,24,25,26,27] output_file("twin_axis.html") p = figure(x_range=(0,6), y_range=(0,6)) p.circle(x, y, color="red") p.extra_y_ranges = {"foo1":