本文整理汇总了Python中bokeh.models.Select.value方法的典型用法代码示例。如果您正苦于以下问题:Python Select.value方法的具体用法?Python Select.value怎么用?Python Select.value使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类bokeh.models.Select
的用法示例。
在下文中一共展示了Select.value方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: Slider
# 需要导入模块: from bokeh.models import Select [as 别名]
# 或者: from bokeh.models.Select import value [as 别名]
controls = [
[Button(label='-'), Slider(title='Sample Rate', value=fs, start=2, end=400, step=1), Button(label='+')],
[Button(label='-'), Slider(title='Frequency', value=f, start=1, end=100, step=1), Button(label='+')],
[Button(label='-'), Slider(title='Offset', value=offset, start=-10, end=10, step=1), Button(label='+')],
[Button(label='-'), Slider(title='Amplitude', value=amplitude, start=0, end=10, step=1), Button(label='+')],
[Button(label='-'), Slider(title='Phase', value=phase, start=0, end=6, step=1), Button(label='+')]]
# setup callbacks for controls, update the list of widgets
for control in controls:
tmp = []
for c in control:
if isinstance(c, Button):
c.on_click(partial(callback_button, action=c.label, slider=control[1]))
tmp.append(widgetbox(c, width=50, height=50))
elif isinstance(c, Slider):
c.on_change('value', callback_slider)
tmp.append(widgetbox(c, width=350))
widgets.append(row(tmp))
# create a Div widget to display aliased frequency information
div = Div()
widgets.append(widgetbox(div, width=400))
# create a layout of all widgets and figures
wcolumn = column(widgets, width=500)
layout = row(wcolumn, column(trig, psd), sizing_mode='fixed')
# initialize everything and update curdoc
select.value = 'cos'
curdoc().add_root(layout)