How can I set the color of a line in plotly?
plotly
import plotly.graph_objects as go from plotly.subplots import make_subplots fig = make_subplots(rows=
You can add line=dict(color="#ffe476") inside your go.Scatter(...) call. Documentation here: https://plot.ly/python/reference/#scatter-line-color
line=dict(color="#ffe476")
go.Scatter(...)