Skip to main content

lengthUnit

Description

Defines the minimal unit for task bars (the task length) in a chart

Usage

lengthUnit?: "hour" | "day" | "week" | "month" | "quarter" | "year";

Parameters

  • lengthUnit - the minimal unit of the task bars (task length) in a chart. It should be equal to or smaller than the scales unit. Possible values: "hour" | "day" | "week" | "month" | "quarter" | "year".

Example

import { getData } from "./data";
import { Gantt } from "wx-react-gantt";
import { useRef } from "react";

function GanttComponent() {
const data = getData();
const lengthUnitRef = useRef("week");

return (
<Gantt
tasks={data.tasks}
lengthUnit={lengthUnitRef.current}
/>
);
}

export default GanttComponent;