在3d绘图的轴标签中添加换行符 - 绘图

时间:2018-05-02 14:26:54

标签: python plotly

在轴标签中插入<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
        )
    )
)

0 个答案:

没有答案