我正在尝试创建不同的子图,并且我希望每个子图具有不同的背景色。我正在使用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
)
您可以使用set_facecolor
:
ax.set_facecolor('xkcd:salmon')