Plotly是一个开源的数据可视化库,可以用于创建各种类型的图表,包括堆叠条形图。要向堆叠条形图添加数据标签,可以使用go.Bar对象的text属性。
下面是使用go.Bar向堆叠条形图添加数据标签的步骤:
import plotly.graph_objects as go
data = [
go.Bar(
x=['A', 'B', 'C'],
y=[3, 5, 2],
name='Category 1',
text=['Label 1', 'Label 2', 'Label 3'], # 数据标签
textposition='auto' # 数据标签位置,可以选择'inside'、'outside'、'auto'
),
go.Bar(
x=['A', 'B', 'C'],
y=[2, 4, 1],
name='Category 2',
text=['Label 4', 'Label 5', 'Label 6'], # 数据标签
textposition='auto' # 数据标签位置,可以选择'inside'、'outside'、'auto'
)
]
layout = go.Layout(
title='Stacked Bar Chart',
xaxis=dict(title='X-axis'),
yaxis=dict(title='Y-axis'),
barmode='stack' # 设置为堆叠条形图
)
fig = go.Figure(data=data, layout=layout)
fig.show()
这样就可以创建一个堆叠条形图,并在每个条形上添加数据标签。text属性用于指定每个条形的数据标签,textposition属性用于指定数据标签的位置。在上面的例子中,数据标签分别为'Label 1'、'Label 2'、'Label 3'和'Label 4'、'Label 5'、'Label 6'。
推荐的腾讯云相关产品:腾讯云数据可视化服务(https://cloud.tencent.com/product/dvs)
领取专属 10元无门槛券
手把手带您无忧上云