如何将字幕与 table 的字幕一起放在 plotly 上
How do I put subtitles on plotly with subtitles with table
我基本上想知道如何在 url 上的示例上添加标题:
https://plot.ly/python/table-subplots/
部分下:
Table 和右对齐图
三张图一张table,如何添加副图标题?
我只有 xaxis 标题可以工作,当我尝试重新定位 xaxis 时,我的图形纵横比被破坏并且 xshit 也不起作用。
将此附加到您的布局定义中。请参阅 this example 以参考和深入了解以简化您的实施:
"annotations": [
{
"text": "Plot 1"
},
{
"text": "Plot 2"
},
{
"text": "Plot 3"
}
]
我基本上想知道如何在 url 上的示例上添加标题:
https://plot.ly/python/table-subplots/
部分下: Table 和右对齐图
三张图一张table,如何添加副图标题?
我只有 xaxis 标题可以工作,当我尝试重新定位 xaxis 时,我的图形纵横比被破坏并且 xshit 也不起作用。
将此附加到您的布局定义中。请参阅 this example 以参考和深入了解以简化您的实施:
"annotations": [
{
"text": "Plot 1"
},
{
"text": "Plot 2"
},
{
"text": "Plot 3"
}
]