Hello,
I am trying to create Gantt chart which will represent timeline in seconds from 0 time. Therefore my data will look like this:
df = [dict(Task=βFooβ, Start=β1.02β, Finish=β1.03β),
dict(Task=βBarβ, Start=β1.05β, Finish=β1.07β),
dict(Task=βFooBarβ, Start=β1.25β, Finish=β1.32β)]
fig = ff.create_gantt(df)
Can this be done without me transforming my time marks such as 1.02 to a fake date?
Also the actual array of dict will have different keys. Is there way to configure grantt chart to use my keys, so I donβt have to transform my keys to name grantt understands?
thanks