gpt4 book ai didi

python - 改变 python bokeh PreText() 的颜色

转载 作者:行者123 更新时间:2023-12-01 08:05:55 25 4
gpt4 key购买 nike

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

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)

最佳答案

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

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

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

您可以查看documentation here还有一个similar question使用 Bokeh 和应用风格。

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

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com