The taskMovingStartEndFormat property (string) specifies the date/time format used by the JavaScript Gantt Chart target position indicators.
The indicators can be enabled using taskMovingStartEndEnabled. The format string follows DayPilot.Date.toString().
DayPilot.Gantt.taskMovingStartEndFormat"MMMM d, yyyy"JavaScript
const gantt = new DayPilot.Gantt("dp", {
taskMovingStartEndFormat: "h:mm tt",
// ...
});
gantt.init();Angular
<daypilot-gantt [config]="config"></daypilot-gantt>config: DayPilot.GanttConfig = {
taskMovingStartEndFormat: "h:mm tt",
// ...
};React
<DayPilotGantt
taskMovingStartEndFormat="h:mm tt"
{/* ... */}
/>Vue
<DayPilotGantt
taskMovingStartEndFormat="h:mm tt"
<!-- ... -->
/>