在Bokeh图表中添加注释或标签可以通过使用Label
或LabelSet
来实现。下面是一个简单的示例:
from bokeh.plotting import figure, show
from bokeh.models import Label
p = figure(plot_width=400, plot_height=400)
p.circle([1, 2, 3, 4, 5], [6, 7, 2, 4, 5])
label = Label(x=1, y=6, text='Point 1', text_font_size='10pt', text_color='red')
p.add_layout(label)
show(p)
在上面的代码中,我们首先创建了一个figure
对象,并在图表上绘制了一些数据点。然后创建了一个Label
对象,指定了标签的位置、文本内容、字体大小和颜色。最后使用add_layout
方法将标签添加到图表中。