import pandas as pd
import plotly.express as px
df={'x':[1,2,3,4,5],'y1':[1,2,3,4,5],'y2':[2,3,4,5,6],'y3':[3,4,5,6,7]}
df=pd.DataFrame(df)
fig = px.area(df, x="x", y=['y1','y2','y3'])
fig.show()
As you can see my Y data are maximum 7. Why the results in the figure shows wrong values? why the vertical axis (value) do not show the correct values that are defined in above dictionary???