end
Description
Sets the end date of the timescaleUsage
end?: Date;
Example
import { getData } from "./common/data";
import { Gantt } from "wx-react-gantt";
function GanttComponent() {
const data = getData();
return (
<Gantt
tasks={data.tasks}
start={new Date(2022, 2, 1)}
end={new Date(2023, 3, 1)}
//other settings
/>
);
}
export default GanttComponent;