如何在Plotly python中更改每个子图的背景颜色

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

我正在尝试创建不同的子图,并且我希望每个子图具有不同的背景色。我正在使用Plotly,这使事情变得有些困难。任何的想法?我认为matplot中的等效项是face_color或类似的东西。

fig = make_subplots(rows=1, cols=2)

fig.add_trace(
    go.Scatter(
        x=list(range(sample_points)),
        y=data_gx.iloc[scene],
        name='X-axis',
        line=dict(color='green', width=2)
    ),
    row=1, col=1
)

fig.add_trace(
    go.Scatter(
        x=list(range(sample_points)),
        y=data_ax.iloc[scene],
        name='X-axis',
        line=dict(color='green', width=2)
    ),
    row=1, col=2
)
python plotly background-color
1个回答
0
投票

您可以使用set_facecolor

ax.set_facecolor('xkcd:salmon')
© www.soinside.com 2019 - 2024. All rights reserved.