Skip to main content

unscheduledTasks

The functionality is available in PRO Edition onlyPRO

Description

Allows displaying and handling unscheduled tasks

The 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 area
  • false - (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