G'day,
I am trying to use a Gantt chart with the following four test tasks:
var projectNewData = [
{
TaskID: 27064608523026975,
TaskName: 'Task 1',
StartDate: new Date(1613176377835),
EndDate: new Date(1613176377844)
},
{
TaskID: 27064608556581500,
TaskName: 'Task 2',
StartDate: new Date(1613176379976),
EndDate: new Date(1613176379998)
},
{
TaskID: 27064608455917964,
TaskName: 'Task 3',
StartDate: new Date(1613176373362),
EndDate: new Date(1613176381312)
},
{
TaskID: 27064608590136243,
TaskName: 'Task 4',
StartDate: new Date(1613176381836),
EndDate: new Date(1619176381841)
}
]
It displays as follows:
Regardless how much I zoom in, task 1 - 3 never get displayed as a bar, but always stay as a diamond.
Is it somehow possible to change that behaviour so that the user can see the duration as displayed with a bar?
I am trying to show a chart similar to something like this https://www.packettotal.com/app/timeline?id=6f4a5f6d7b3c4af88577fa79f8aa105d maybe a Gantt chart is not the best way to do this?
I would very much appreciate any suggestions.
Thanks,
Daniel