Python 散景翻转颜色

Python Bokeh rollover color

我使用Python综合列表显示几个图表(在散景环境下)并使用HoverTool显示一些数据值。

[p.line(x='newindex', y='count', source=result.loc[result.index.year == i],\
color=next(colors),line_width=4,legend_label=str(i)) for i in unique_sorted_date]
hover_tool = HoverTool(tooltips='Date: @oldindex <br>  deces: @count')
p.add_tools(hover_tool)

我想突出显示我要检索信息的行(来自工具提示)。 例如,选定的线将为红色,而其他线为灰色。 有简单的方法吗?

此选项突出显示曲线 hover_line_color="红色"