We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bokeh 2.1.0
from bokeh.io import curdoc from bokeh.layouts import column from bokeh.models import ColumnDataSource, Button, Band from bokeh.plotting import figure ds = ColumnDataSource(dict(x=[0, 1], y=[0, 1])) p = figure(x_range=(-1, 2), y_range=(-1, 10)) bn = Band(lower=0, upper=1, base='x', source=ds) p.add_layout(bn) b = Button() def update(): bn.upper = bn.upper + 1 b.on_click(update) curdoc().add_root(column(p, b))
The text was updated successfully, but these errors were encountered:
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
ALL software version info (bokeh, python, notebook, OS, browser, any other relevant packages)
Bokeh 2.1.0
Complete, minimal, self-contained example code that reproduces the issue
The text was updated successfully, but these errors were encountered: