Question 5: In Gantt component we can map the progress in taskFields and gantt neatly calculates it. BUT what if we have our own implementation of progress calculation on service? I get the data from my server like this:
parent task: {id: 1, progress: 36 %} // 36 percent because our function takes in account many other things.
- child task 1: {id: 2, parent: 1, progress: 0 %}
- child task 2: {id: 3, parent: 1, progress: 100 %}
Now if I bind my data in gantt with progress mapping.. the gantt shows the progress in parent task as 50% and that I don't want.
How can I bind the progress without gantt recalculating it?