{
TaskID: 1,
TaskName: 'Project Initiation',
StartDate: new Date('04/02/2019'),
EndDate: new Date('04/21/2019'),
resources: "test",
subtasks: [
{ TaskID: 2, TaskName: 'Identify Site location', StartDate: new Date('04/02/2019'), Duration: 0},
{ TaskID: 3, TaskName: 'Perform Soil test', StartDate: new Date('04/03/2019'), Duration: 3},
{ TaskID: 4, TaskName: 'Soil test approval', StartDate: new Date('04/04/2019'), Duration: 4},
{ TaskID: 11, TaskName: 'Soil test approval', StartDate: new Date('04/04/2019'), Duration: 4},
]
}
1. On dataSource the Parent EndDate is set to 04/21/2019, but the timeline is displayed EndDate 04/09/2019 because of its subTask endate.
Is it possible to show Parent EndDate on timeline?