如何在Bokeh中添加文本注释?

时间:2015-06-07 17:33:25

标签: bokeh

我在Bokeh中寻找Matplotlib类型1文本注释,但我在其用户指南2或参考文献中找不到它。

2 个答案:

答案 0 :(得分:13)

从版本0.12.2开始,要添加文本注释,您将使用“标签”字形。

from bokeh.models import Label

p = figure(...)

mytext = Label(x=70, y=70, text='here your text')

p.add_layout(mytext)

show(p)

请在文档中找到完整的示例: http://bokeh.pydata.org/en/latest/docs/user_guide/annotations.html#userguide-annotations

答案 1 :(得分:4)

此“文字”功能属于“字形”:您会找到页面here