Hello,
I wanted to create a Timeline/Gantt-Chart.
As you can see I have two colors/groups for bars: Release and Epic.
In my DataFrame the order is right: Releases and Epics are mixed together.
However, my Gantt-Chart sorts the Epics on the buttom of the Chart and Releases on the top:
Does anyone how I can avoid that? I want my Chart to display exactly the order of my DataFrame.
I defined my timeline as follows:
fig = px.timeline(df
, x_start="Start"
, x_end="End"
, y="Name"
, hover_name="Task"
, opacity=0.8
, template='plotly_white'
, height=3000
, width=1150
, color="Type"
)