gpt4 book ai didi

ipywidgets - 用于 ipywidgets 交互的更大下拉菜单

转载 作者:行者123 更新时间:2023-12-05 03:05:22 25 4
gpt4 key购买 nike

是否可以使 ipywidget 交互的输入表单更大?例如,当我使用以下代码时,该字段对于标题来说太小了,看起来很乱。

# python code to run in jupyter notebook
%pylab inline
from ipywidgets import interact
def f(x):
plot(range(10))
title(x)
interact(f, x=['AbCd'*10])

最佳答案

1) 将您的互动换成互动将使您返回最终的小部件,对其进行修改,然后显示它。

2) 通过查找交互式的第一个子项,然后以像素为单位设置布局宽度,手动指定下拉列表的布局。在即将发布的版本中,您似乎可以将 width='initial' 设置为自动调整大小。 ( revelant github issue )


# python code to run in jupyter notebook
%pylab inline
from ipywidgets import interact, interactive, Layout
def f(x):
plot(range(10))
title(x)
int_widget = interactive(f, x=['AbCd'*10])
int_widget.children[0].layout = Layout(width='500px')
display(int_widget)

enter image description here

关于ipywidgets - 用于 ipywidgets 交互的更大下拉菜单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51067574/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com