Skip to main content

lengthUnit

Description

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

Usage

lengthUnit?: "minute" | "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: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year".

Example

import { getData } from "./data";
import { Gantt } from "@svar-ui/react-gantt";

const data = getData();
const lengthUnit = "week";

function App() {
return (
<Gantt
tasks={data.tasks}
lengthUnit={lengthUnit}
/>
);
}

export default App;

Related sample: Length unit (rounding)