The taskResizingStartEndEnabled property (boolean) activates target date/time indicators in the JavaScript Gantt Chart while task boxes are being resized using drag and drop.
Declaration
DayPilot.Gantt.taskResizingStartEndEnabledPossible Values
true- displays target start and end indicators while resizing tasks.false- hides target start and end indicators while resizing tasks.
Default Value
falseExamples
JavaScript
const gantt = new DayPilot.Gantt("dp", {
taskResizingStartEndEnabled: true,
// ...
});
gantt.init();Angular
<daypilot-gantt [config]="config"></daypilot-gantt>config: DayPilot.GanttConfig = {
taskResizingStartEndEnabled: true,
// ...
};React
<DayPilotGantt
taskResizingStartEndEnabled={true}
{/* ... */}
/>Vue
<DayPilotGantt
:taskResizingStartEndEnabled="true"
<!-- ... -->
/>See Also
DayPilot.Gantt.taskResizingStartEndFormat
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot