使用 Plotly 更新布局参数列表

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

我正在学习使用 Plotly,并且在每个示例中,布局都使用 Fig.update_layout(...

https://plotly.com/python/text-and-annotations/

我想确切地知道在那里可以做的一切。

我在哪里可以找到

的详尽论证列表
fig.update_layout( ???
python plotly
2个回答
1
投票

顾名思义,“更新布局”,你可以用它更新很多东西。

查看:https://plotly.com/python/reference/layout/


0
投票

您可以轻松计算:

fig.update_layout(
        title=title,
        xaxis_title=xaxis,
        yaxis_title=yaxis)

其中 title、xaxis_title 和 yaxis_title 是字符串。

© www.soinside.com 2019 - 2024. All rights reserved.