Hi all,
Relatively simple data structure, that is only one level deep i.e. one parent -> many children.
I am reading the datasource in from an external location (DB/API) and performing some data transformation so that I can use if for the Gantt control.
My structure is pretty easy:
{
"ActivityId": "ABC-123",
"Predecessor": "ABC-1FS",
"ActivityName": "Hello",
"StartDate": "2019-04-22T07:00:00",
"EndDate": "2019-04-26T17:00:00",
"Children": [
{
"ActivityId": "ABC-1234",
"PredecessorActivityId": "ABC-1233FS",
"ActivityName": "World",
"StartDate": "2019-04-22T07:00:00",
"EndDate": "2019-04-23T17:00:00",
"Children": []
}
]
}
My Gantt is rendering but there are no dependency lines being shown (the data model is fine).
Does TaskId work if it is not an integer?