在 Bokeh 0.10.0 中,我们可以将 HoverTool 用于线条。但是我们可以将它用于 multi_line 吗?例如,在运行以下代码时,
from bokeh.models import ColumnDataSource
from bokeh.models import HoverTool
from bokeh.plotting import figure, output_file, show
x = [1, 2, 3, 4, 5]
ys = [[6, 7, 2, 4, 5], [5, 4, 2, 7, 6]]
hover = HoverTool(
tooltips=[
("(x,y)", "($x, $y)"),
("label", "@label"),
]
)
output_file("test_bokeh.html", title="bokeh feature test")
p = figure(title='figure', x_axis_label='x', y_axis_label='y', tools=[hover])
line_source = ColumnDataSource({
'x': x,
'y': x,
'label': ['single line'] * 5,
})
p.line('x', 'x', source=line_source)
multi_line_source = ColumnDataSource({
'xs': [x, x],
'ys': ys,
'label': ['line 0', 'line_1'],
'color': ['red', 'blue'],
})
p.multi_line('xs', 'ys', color='color', source=multi_line_source)
show(p)
它正确显示线图的工具提示,但没有显示多线图的工具提示。我做错了什么,还是没有为 multi_line 实现 HoverTool?
最佳答案
从 Bokeh 引用指南中发现它尚未实现(尚未实现);看
http://docs.bokeh.org/en/latest/docs/reference/models/tools.html#bokeh.models.tools.HoverTool
关于python - 散景 multi_line 和 HoverTool,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32975709/