I want to create interactive Gantt-Charts (or a sequence chart) for displaying the scheduling of tasks on multiple processors.
I found the library plotly, which produced very good and interactive Gantt-charts. Unfortunately, plotly-Gantt only works with dates and not numerical values, like I have with the runtime values of the schedule.
Is there a possibility to create Gantt-charts in plotly with numerical values?
Code Example: (I would like to use something like this)
import plotly.figure_factory as ff
df = [dict(Task="Job A on Core 0", Start=0, Finish=10),
dict(Task="Job B on Core 1", Start=2, Finish=8),
dict(Task="Job C on Core 0", Start=11, Finish=12)]
fig = ff.create_gantt(df)
fig.show()