Bokeh

如何在Bokeh图表中添加注释或者标签

小樊
92
2024-05-20 11:04:23
栏目: 编程语言

在Bokeh图表中添加注释或标签可以通过使用LabelLabelSet来实现。下面是一个简单的示例:

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方法将标签添加到图表中。

0
看了该问题的人还看了