我怎样才能绘声绘色地给文本加下划线?

2024-09-28 03:23:04 发布

您现在位置:Python中文网/ 问答频道 /正文

在使用注释时,我尽量在文本中加下划线。 我使用添加注释

import plotly.graph_objects as go
g = go.FigureWidget(make_subplots(rows=1,cols=1))
g.update_layout(annotations=[dict(text='my text')]) #plus any other parameters

是否有一个选项(也许在注释dict中?)给文本加下划线?在

谢谢!在


Tags: text文本importgomakeobjectsasupdate
1条回答
网友
1楼 · 发布于 2024-09-28 03:23:04

Plotly使用HTML标记的子集来格式化文本,如粗体'<b></b>'和斜体'<i></i>'。唉,'<u></u>'目前似乎还没有包括在内。但是linebreak包含在中,因此您可以像这样做一些小的修改:

string = "These are orange"
myText = string+'<br>'+ '-'*len(string)

绘图:

enter image description here

代码:

^{pr2}$

绘图源:使用help(fig.layout)

  text
 |                  Sets the text associated with this annotation.
 |                  Plotly uses a subset of HTML tags to do things
 |                  like newline (<br>), bold (<b></b>), italics
 |                  (<i></i>), hyperlinks (<a href='...'></a>).
 |                  Tags <em>, <sup>, <sub> <span> are also
 |                  supported.

相关问题 更多 >

    热门问题