unscheduledTasks
Description
Allows displaying and handling unscheduled tasksThe property allows showing unscheduled tasks only in the grid with tasks tree. No task bar is displayed in the Chart itself. In the tasks tree area, columns like Start and Duration display a hyphen (-) for unscheduled tasks.
Usage
unscheduledTasks?: boolean;
Parameters
true- displays unscheduled tasks in the tasks tree areafalse- (default) unscheduled tasks are not displayed
Example
<script>
import { getData } from "./common/data";
import { Gantt } from "@svar/svelte-gantt";
const data = getData();
</script>
<Gantt {tasks} unscheduledTasks={true} />
Related articles: Managing unscheduled tasks