Plotly Express Stacked Area Plot

Great! Managed to get it working with:

plt = px.area(df, x='time', y='smooth_watts')
plt.update_traces(line=dict(width=0))

Ah right, sorry it’s width not weight :slight_smile: