Hi,
here is simple example of two-plot grid
from bokeh.plotting import figure, curdoc
from bokeh.layouts import gridplot
class Clima:
def __init__(self):
self.layout = gridplot(
[
[figure()],
[figure()],
],
sizing_mode='stretch_both',
)
curdoc().add_root(self.layout)
Clima()
with version 2.2.3 it renders like this
however with version 2.3.2 like this
I checked GitHub ad it looks like there were some regressions in layout, however I am not sure if this is actually related or it is expected behaviour.
If later I would like to know how to get a former one. I tried to play with different layouts [column()
, grid()
, layout()
] and sizing_modes
, but non of that worked as needed.
Thank you
Radek