How to add tasks to gantt charts with same x axis but need the tasks to be at different y axis

I am trying to get the gantt chart, with trying to get multiple tasks with same x axis data , i.e they have the the same start and finish data however the gantt are overlapping with each other and I need them to be separated at a distance on y-axis how can I achieve this
EXAMPLE-

I need exact same bar on the broadway that is currently on the marketstreet.

Thanks

@empet - please if you could help me with above query it would be great. Thanks .

You just need to provide different data to your Y variable in your timeline function
fig = px.timeline(df2, x_start=‘Start’, x_end=‘Finish’, y=“SomeData”, color=‘Qolor’)
your plot is grouped by values provided for y axis i.e. SomeData in the above example.