Hi,
Iām new to plotly and Iām creating a gantt chart using px.timeline. There are 3 categories of data in my dataset, a normal task with a start and end time, and two types of task where the start and end time are same. I want the normal task to be a rectangle (which is how it is being plot) and the other two tasks to have a hourglass marker and a triangle marker instead of a very thin line ?
This is how my data looks :
data = [dict(Task=āā, start=āā, end=āā, color=āā, shape=ā<rect, hour, tri>ā)]
Is there any way I can achieve this ?
Thanks 