Hello, I would like to know if it is possible to create the data table and generate the gantt chart without the need to use gantt.parse, creating a real mirror of the task.data data that I insert in the gantt, avoiding recalculations, propagation of dates between tasks-tasks and tasks-projects , regardless of the children’s dates or whether or not I have predecessors. I really need a load that generates a mirror of my values, without recalculation interference and without the need to set all tasks to manual mode.
Passing to load on parse:
tasks.data : [
{
id: 1,
type: project,
start_date: 25/06/2022,
end_date: 28/06/2022,
duration: 4,
parent: 0,
text: Element 1
},
{
id: 2,
type: task,
start_date: 25/06/2022,
end_date: 30/06/2022,
duration: 6,
parent: 1,
text: Element 2
}
]
The ‘end_date’ date of the ‘Element 1’ in the data table and graph should be 28/06/2022 and not 30/06/2022, being a json mirror added and not recalculating the date based on children as is currently happening after the gantt. parse.
is it possible to load the data without gantt.parse or changing some configuration so that I get exactly the data I pass?
Thanks for help