Has some example to plot like this ?
Hi,
whats the difference between your plot and a line plot with various traces?
import plotly.express as px
df = px.data.gapminder().query("continent == 'Oceania'")
fig = px.line(df, x='year', y='lifeExp', color='country', symbol="country")
fig.show()