Layout Resizing Question

Whats the correct resizing scheme for figures within a tabbed widget panel?
I’m having scaling issues when I set the figures sizing modes to anything other than fixed.

Example setup:

widgets= widgetbox([slider1,slider2], sizing_mode=‘scale_both’)

table = DataTable(… width=foo, height=bar)

plot1 = figure(…,sizing_mode=?)

plot2 = figure(…, sizing_mode=?)

tab1 = Panel(child=plot1)

tab2 = Panel(child=plot2

plots = Tabs(tabs=[tab1,tab2])

column([widgets, plots, table], sizing_mode=‘scale_both’)