The taskResizingStartEndEnabled property (boolean) activates target date/time indicators in the JavaScript Gantt Chart while task boxes are being resized using drag and drop.
DayPilot.Gantt.taskResizingStartEndEnabledtrue - displays target start and end indicators while resizing tasks.
false - hides target start and end indicators while resizing tasks.
falseJavaScript
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"
<!-- ... -->
/>