tasks
Description
Defines tasks in GanttUsage
tasks?: [
{
id: string|number,
// start is mandatory in incoming data; end or duration is optional - but one of them must be
start: Date,
end?: Date,
duration?:number,
text?: string,
progress?: number,
parent?: string|number,
type?: "task" | "summary" | "milestone" | any, //can be custom type
open?:boolean,
lazy?:boolean,
// data for task baseline
// base_start is mandatory in incoming data; end or duration is optional - but one of them must be
base_start?: Date,
base_end?: Date,
base_duration?: number
}
];