gpt4 book ai didi

python - Select DropDown无法使用JS回调更改ColumnDataSource

转载 作者:太空宇宙 更新时间:2023-11-03 20:29:59 24 4
gpt4 key购买 nike

我尝试更改多个参数(参数),但这不起作用。

Bokeh 版本是1.3.4。

from bokeh.layouts import column
from bokeh.layouts import column
from bokeh.models import CustomJS, ColumnDataSource, Slider, Select
from bokeh.plotting import Figure, output_notebook, show
import numpy as np
a = 20


bokeh_tools = "pan,wheel_zoom"

output_notebook()
plot_2s = ColumnDataSource(data=dict(x=[1, 2, 3], y=[1, 2, 3]))
plot_3s = ColumnDataSource(data=dict(x=[3, 4, 5], y=[1, 2, 3]))
line_source = ColumnDataSource(data=dict(x=[1, 2, 3], y=[1, 2, 3]))

plot_1 = figure(x_axis_type="datetime", plot_width=800, tools=bokeh_tools, title="plot_1")
plot_1.line(x = 'x', y='y', source=plot_2s)
plot_2 = figure(x_axis_type="datetime", plot_width=800, tools=bokeh_tools, title="plot_2")
plot_2.line(x='x', y='y', source=line_source)

select = Select(title="SELECT", options=["val1", "val2"])
column = column(select, plot_2)
show(column)

select.callback = CustomJS(args={"cds2": plot_2s, "cds3": plot_3s, "ls": line_source}, code="""
if(cb_obj.value === "val1"){
ls.data = cds2.data;
}else if(cb_obj.value === "val2"){
ls.data = cds3.data;
}
ls.change.emit();
""")

没有回调未实现的错误消息

最佳答案

您的回调永远不会执行,因为它永远不会添加到输出中。一旦您调用 show,就会生成并显示 HTML 输出。该点之后的任何操作实际上都是无操作,并且就输出而言不存在。通常 show 应最后调用。

关于python - Select DropDown无法使用JS回调更改ColumnDataSource,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57566344/

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