The taskMovingStartEndEnabled property (boolean) activates target date/time indicators in the JavaScript Gantt Chart while task boxes are being moved using drag and drop.
DayPilot.Gantt.taskMovingStartEndEnabledtrue - displays target start and end indicators while moving tasks.
false - hides target start and end indicators while moving tasks.
falseJavaScript
const gantt = new DayPilot.Gantt("dp", {
taskMovingStartEndEnabled: true,
// ...
});
gantt.init();Angular
<daypilot-gantt [config]="config"></daypilot-gantt>config: DayPilot.GanttConfig = {
taskMovingStartEndEnabled: true,
// ...
};React
<DayPilotGantt
taskMovingStartEndEnabled={true}
{/* ... */}
/>Vue
<DayPilotGantt
:taskMovingStartEndEnabled="true"
<!-- ... -->
/>