我正在使用... plotly(python)创建一个barplot。
go.Bar(
x=[1, 2, 3],
y=[0.1, 0.2, 0.3],
text=['10%', '20%', '30%'],
textposition='inside',
marker=dict(
color='rgba(219, 64, 82, 0.7)',
line=dict(
color='rgba(219, 64, 82, 1.0)',
width=2,
)
),
base=0)
因此,我在每个栏中显示一些文本,现在我还要添加一些由自定义字符串组成的自定义hovertext
,与x
,y
有所不同或text
。
有可能吗?
谢谢