I've lot of ipywidgets sliders connected to a graph and I'd like to have them on the left side of the layout. In addition to that, the output graph shall be on the right side in order to optimize space and increase usability.
The result without layering is like the following picture:
Do you have any solution to have sliders on the left side and the output on the right side?
I've already tried HBox + VBox using interactive:
inter = wgt.interactive(f_arctan2,va=wgt.FloatSlider(min=-5.,max=5.,step=0.5,value=1.5),vb=wgt.FloatSlider(min=-6,max=6,step=0.5,value=0),
va2= wgt.FloatSlider(min=-5.,max=5.,step=0.5,value=-1), vb2= wgt.FloatSlider(min=-5.,max=5.,step=0.5,value=-3) )
display(wgt.HBox(wgt.VBox(inter.children[:-1]),inter.children[-1]))
but there is a tuple error
TypeError: init() takes from 1 to 2 positional arguments but 3 were given
Using also inter.children.Output() as second parameter doesn't work.