因此,我创建了一个带有一些线条和一个跨度(或多个跨度)的图形。
f = figure()
f.line(x, y1, legend_label='1st set')
f.line(x, y2, legend_label='2st set')
vl = Span(location=x_point,
dimension='height',
line_dash='dotdash', line_color="black", line_alpha=0.7)
f.add_layout(vl)
Run Code Online (Sandbox Code Playgroud)
我想将跨度条目添加到图形的默认图例中。