This repository was archived by the owner on Aug 29, 2025. It is now read-only.

Description
The traces and the y-axis label on the subplots seem to be off by one when using facet_row to generate subplots. See image below:

The code to recreate this is below:
import pandas.util.testing as put
import plotly.express as px
sample_df = put.makeTimeDataFrame().reset_index().melt(id_vars='index')
px.line(sample_df, x='index', y='value', facet_row='variable')
Installed via pip install plotly==4.0
>>> px.__version__
'0.3.0'