在轴标签中插入<br>
- 按建议in this other post - 在 3d plot
有什么建议吗?
由于
ps:这是代码的样子,对于3d绘图
layout = go.Layout(
title='my_title',
scene=dict(
xaxis=dict(
title='x_title' + '<br>' + 'at new line',
titlefont=dict(
size=18
)
),
yaxis=dict(
title='y_title' + '<br>' + 'at new line',
titlefont=dict(
size=18
)
),
zaxis=dict(
title='z_title' + '<br>' + 'at new line',
titlefont=dict(
size=18
)
)
)