我正在尝试创建一个 Jupyter Notebook 来帮助一些同事以交互方式访问一些数据。我想给他们一堆小部件,允许他们使用不同的标准来过滤数据。
主要是它工作得很好,但我无法调整两个小部件之间的间距,这会让我发疯。
我已尝试按照此处的说明进行操作,但两个按钮始终紧挨着。
class Dashboard(object):
def __init__(self):
item_layout = Layout(flex='1 1 auto',
width='auto')
toggle = widgets.ToggleButtons(
options=["Foo", "Bar"],
value="Foo",
description="Foobar:",
disable=False,
layout=item_layout,
)
check = widgets.Checkbox(
value=True,
description="Checked",
disabled=False,
layout=item_layout,
)
box_layout = Layout(display='flex',
flex_flow='row',
justify_content='space around',
width='500px',
button_layout='solid',
)
buttons = widgets.Box(children=[
widgets.interactive(self._set_foobar, foobar=toggle, layout=item_layout),
widgets.interactive(self._set_checked, checked=check, layout=item_layout),
],
layout=box_layout)
display(buttons)
def _set_foobar(self, foobar):
self._foo = foobar == 'Foo'
def _set_checked(self, checked):
self._checked = bool(checked)
如果我然后打开一个 Jupyter 笔记本并执行以下操作:
import dashboard
y = dashboard.Dashboard()
它产生:
如果我不使小部件具有交互性,即children=[toggle, check]
它可以完美运行。
有没有办法可以调整交互式小部件之间的空间?