散景中的链接画笔是否可以与折线图一起使用?

时间:2019-11-25 23:13:39

标签: python bokeh

有人知道链接的画笔是否适用于折线图?在下面的代码中,当我在chart1上选择一个区域时,没有任何反应。但是,如果我将line_chart1.line更改为line_chart1.circle,那么突然之间,我的图表便会同步并在一个图表上进行选择,并与其他图表上的数据匹配。

# define line chart
TOOLS = "xbox_select,lasso_select,help"

line_chart1 = figure(tools=TOOLS, plot_height=300, plot_width=600, x_axis_type='datetime')
line_chart2 = figure(tools=TOOLS, plot_height=300, plot_width=600, x_axis_type='datetime')
line_chart3 = figure(tools=TOOLS, plot_height=300, plot_width=600, x_axis_type='datetime')

line_chart1.line('date', 'score', source=cds)
line_chart2.line('date', 'average', source=cds)
line_chart3.line('date', 'median', source=cds)

1 个答案:

答案 0 :(得分:0)

从当前版本(1.4)开始,Bokeh不支持通常在链接或不链接的行上进行选择或突出显示。