I’m new to python/pandas/plotly-dash
I am trying to change the markers on some of the data points based on a condition.
The following plots
fig = px.line(dffffffffff, x=‘DATE’, y=‘VALUE’, color=‘ID’, symbol=“ID”, markers=True)
I would to plot some similar to the following.
fig = px.line(dffffffffff, x='DATE', y='VALUE', color='ID', symbol="ID", markers=True, If df['STATUS'] == "HELD" marker == Triangle)