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