答案 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