我有以下代码:
def get_amp_graph():
ampfig = go.Figure(go.Bar(x=['1540', 'Average'], y=get_amp_acc()))
ampfig.update_layout(plot_bgcolor='rgb(28, 28, 28)')
amp_html = ampfig.to_html (
include_plotlyjs=True,
full_html=False,
)
return amp_html
我希望背景颜色为 rgb(28, 28, 28),但随后发生了这种情况。我怎样才能让剩下的白色也变成rgb(28,28,28)