taskTypes
Description
An array of objects containing the tasks types dataUsage
taskTypes?: [
{
id: string,
label?: string
}
];
Parameters
id
- (required) the task ID which can be one of the following: "task", "summary", "milestone" or any other custom task typelabel
- (optional) the task title
Example
<script>
import { getData } from "./common/data";
import { Gantt } from "wx-svelte-gantt";
const data = getData();
const taskTypes = [
{ id: "task", label: "Project Task" },
{ id: "summary", label: "Project" },
];
</script>
<Gantt tasks={data.tasks} {taskTypes} />
info
Instructions with an example of adding a new custom task type you can find here: Adding a custom task type