更改python bokeh PreText()的颜色

时间:2019-04-05 11:12:29

标签: python bokeh

是否可以更改

的字体或颜色

bokeh.models.widgets.markups.PreText

from bokeh.models.widgets import PreText
from bokeh.plotting import show

mytext = PreText()
mytext.text = "Text in black"
show(mytext)

1 个答案:

答案 0 :(得分:1)

散景标记被映射到HTML元素,因此您可以通过关键字style将样式绑定到它。像这样:

mytext = PreText(text="Text in black", style={'color': 'black'})

还要注意,PreText映射到<pre>标签,该标签用于预格式化的文本,例如通常用于显示代码。根据您要显示的内容,“段落”会更合适。

您可以检查documentation here以及similar question的使用散景和应用样式。