Space between jupyter widgets and FigureWidgets

Is it somehow possible to define the space between FigureWidgets and jupyter widgets like HBox and VBox. I try to build up an interactive UI, and not want to work with pixel heights and widths. But it seems, that the jupyter widgets womehow overlapping the FigureWidgets. I think i have somehow define the space between them.

Hi @Varlor,

You can set the margin/padding of Jupyter widgets using their layout system. See https://ipywidgets.readthedocs.io/en/stable/examples/Widget%20Styling.html.

-Jon