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().
Declaration
DayPilot.Gantt.taskResizingStartEndFormatDefault Value
"MMMM d, yyyy"Examples
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"
<!-- ... -->
/>See Also
DayPilot.Gantt.taskResizingStartEndEnabled
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot