In a simple bokeh slider.py demo, you can use the resize tool to enlarge the graph.
If you increase the width, however, the plot first uses the space occupied by the slider widgets, and then begins to expand to the right:

Is there a way to prevent this behavior?
Widgets are in VBoxForm , and I assume that the problem lies (t) here:
inputs = VBoxForm(children=[text, offset, amplitude, phase, freq]) curdoc().add_root(HBox(children=[inputs, plot], width=800))
How can I make bokeh preserve the size of the widget, or, alternatively, left-align the graph (so that I can increase the size of the container without changing the original view)?
source share