有没有办法改变字体或颜色

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)

最佳答案

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

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

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

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

关于python - 更改python bokeh PreText()的颜色,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/55534133/

10-12 23:24