Gibt eine Aufgabe anhand ihres globalen Aufgabenindex zurück
index | number | string | der Aufgabenindex im Baum (nullbasierte Nummerierung) |
Task | ein Aufgabenobjekt |
const globalTaskIndex = gantt.getGlobalTaskIndex(19); // -> 10
const task = gantt.getTaskByIndex(10);
// -> {id:"19", text:"Task name", type:"project", order:"10", progress:0.4, …}