Plotly:长轴标签的多行对齐

问题描述 投票:0回答:1

我们如何对齐 xaxes 标签(非常长)以显示在多行中。

以下是Excel中的示例。

我试图在情节中实现同样的目标(使用

ticklen
tickwidth
),但它没有在多行中提到它。

python plotly
1个回答
0
投票
import plotly.graph_objects as go

fig = go.Figure(data=go.Bar(x=['Label 1<br>Sub-label', 'Label 2<br>Sub-label', 'Label 3<br>Sub-label'], y=[10, 11, 12]))

fig.update_layout(
    title='Multi-Line Axis Labels',
    xaxis_title='X Axis Name',
    yaxis_title='Y Axis Name'
)

fig.show()
© www.soinside.com 2019 - 2024. All rights reserved.