hi I am creating a chart with multiple Y series by below
fig = px.bar(df_ora, x="TIME",y=['SUCC','FAIL'], color='INSTANCE_NAME' , title="Reload Trend",color_continuous_scale =['green','red'], facet_col='INSTANCE_NAME',facet_col_wrap=2,height=1000)
fig.update_layout(
autosize=True,
width=1500,
height=1500,
barmode ='relative'
)
fig.update_xaxes(showticklabels=True) # assuming second facet
fig.update_yaxes(autorange=True)
fig.update_yaxes(tickmode='auto')
fig.write_html('api.html',include_plotlyjs='cdn',full_html=True)
i am able to get it but i want to change a different color for SUCC and FAILED … how can i get it . attached is my chart