0

我有这些python代码

from bokeh.embed import components
from bokeh.plotting import figure
from bokeh.models import layouts, CustomJS, Select

bokeh_tools = "pan,wheel_zoom"
plot_1 = figure(x_axis_type="datetime", plot_width=800, tools=bokeh_tools, title="plot_1")
plot_1.line(x_values, y_values)
plot_2 = figure(x_axis_type="datetime", plot_width=800, tools=bokeh_tools, title="plot_2")
plot_2.line(x_values_other, y_values_other)
plot_3 = figure(x_axis_type="datetime", plot_width=800, tools=bokeh_tools, title="plot_3")
plot_3.line(x_values, y_values)

select = Select(title="SELECT", options=["val1", "val2"])
column = layouts.Column(plot_1, select, plot_2)

select.callback = CustomJS(args={"column": column,
                                 "plot_1": plot_1,
                                 "plot_2": plot_2,
                                 "plot_3": plot_3}, code="""

             if(cb_obj.value === "val1"){ 
               Bokeh.index[column.id].child_views[plot_2.id].remove(); // remove plot_2 from html
               //what i must to do to add generated on python side plot_3 and show it 
             }else if(cb_obj.value === "val2"){
              // some code here
             }""")

script, div = components(column)

然后我将这个 div 和脚本插入 html 并显示在某个页面上。在页面上将可见“plot_1”、“plot_2”和“select”是下拉菜单。这些图有不同的值,有很多行。我想单击选定的下拉菜单,然后在 plot_3 上更改 plot_2。

通过单击下拉菜单,我必须在 html 文档中渲染 plot_3 吗?或者通过单击客户端 html 来更改重新渲染图的任何其他方式?

4

1 回答 1

1

您不需要创建第三个图,特别是因为它看起来像两者plot_2,并且plot_3是在 x 轴上带有日期时间的线图。您可以继续并plot_2根据您在下拉菜单中的选择更改数据。

一种方法是使用 Bokeh ColumnDataSource(另见https://docs.bokeh.org/en/latest/docs/reference/models/sources.htmlhttps://docs.bokeh.org/en/latest/ docs/user_guide/interaction/callbacks.html#javascript-callbacks)。您可以创建其中两个:一个包含您的数据plot_2,另一个包含当前应该显示在您的plot_3. 然后,在您的回调中,只需更改行的来源,即第三个类似容器的 ColumnDataSource。确保所有 ColumnDataSource 的列具有相同的名称。

这是一个示例,基于您的代码:

    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_values, y_values)
    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 = layouts.Column(plot_1, select, plot_2)

    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();
         """)
于 2018-02-24T10:17:07.000 回答