Hi, I have a dataframe with columns: date, y1, p1 . p1 is based on y1, it is a determination of y1โs direction (if y1 is going up, down or sideways). When I plot fig=px.line(df, x=โDateโ,y=โp1โ), I get a normal one color chart.
When I try fig=px.line(df, x=โDateโ,y=โy1โ,facet_col=โp1โ) or fig=px.line(df, x=โDateโ,y=โt1โ,color=โt1drโ) it subdivides the chart into three different regions based on โp1โ. This messes up the date order.
I want the date order to remain the same just the color to change to see how well my determination of y1โs direction is, is this possible