A customizable, high-performance React Gantt chart component for building project timelines.
npm install @svar-ui/trial-react-ganttSVAR React Gantt is a customizable, interactive Gantt chart component for visualizing and managing project timelines. This package provides the trial version of SVAR React Gantt PRO.
The trial includes a built-in SVAR watermark and is intended for evaluation and testing only. You can find the terms of the Trial License here.
â ď¸ The trial version is not free software.
To use SVAR React Gantt PRO in a production or commercial project, you must purchase a commercial license - see the pricing details.
If you have technical questions about using SVAR React Gantt, visit the SVAR forum.
To access timely email support from our team during your 30-day trial, please submit the trial request form on our website.
To start using SVAR React Gantt, simply import the package and include the desired component in your JSX file:
``jsx
import { Gantt } from "@svar-ui/trial-react-gantt";
import "@svar-ui/trial-react-gantt/all.css";
const tasks = [
{
id: 20,
text: "New Task",
start: new Date(2024, 5, 11),
end: new Date(2024, 6, 12),
duration: 1,
progress: 2,
type: "task",
lazy: false,
},
{
id: 47,
text: "[1] Master project",
start: new Date(2024, 5, 12),
end: new Date(2024, 7, 12),
duration: 8,
progress: 0,
parent: 0,
type: "summary",
},
];
const myComponent => (
``