Can someone extend this answer and cater for the case of multiple lines in the same plot? For example, say the figure is created by:
fig = px.line(df, x="Date", y=["Averaged", "Raw"])
How can I control the colors assigned to the lines? I tried fig.update_traces(line_color=["#456987", "#147852"])
but it didn’t work… Any idea?