Bokeh multi_line和HoverTool

时间:2015-10-06 17:10:28

标签: python python-2.7 bokeh

在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绘图显示任何内容。我做错了什么,还是没有为multi_line实现HoverTool?

1 个答案:

答案 0 :(得分:3)