I would like to automatically adjust the project's start date by increasing the duration of Task 1 or the Task Fixed end date. Simultaneously, I want to be able to change the project's end date by increasing the duration of Task 3.
Current behavior: Increasing the duration of Task 1 or the Task Fixed end date does not yield any results, while increasing the duration of Task 3 changes the project's end date.
Below, I am providing the configuration details.
export const ganttPropsStartDate = {
columns: [{ type: "name", field: "name", width: 250 }],
viewPreset: "weekAndDayLetter",
barMargin: 10,
displaySchedulingIssueResolutionPopup: false,
project: {
startDate: "2024-07-03",
tasksData: [
{
id: 0,
children: [
{
id: 1,
direction: "Backward",
name: "Task 1",
duration: 3,
projectConstraintResolution: "ignore",
},
{
id: 2,
constraintType: "mustfinishon",
constraintDate: "2024-07-09",
name: "Task Fixed end date",
duration: 3,
projectConstraintResolution: "ignore",
},
{
id: 3,
direction: "Forward",
name: "Task 3",
duration: 3,
projectConstraintResolution: "ignore",
},
]
}
],
dependenciesData: [
{ id: 1, fromTask: 1, toTask: 2 },
{ id: 2, fromTask: 2, toTask: 3 },
],
},
};