The eventEndSpec property (string) determines how the Navigator interprets the event end date, either as an exact point in time or as a date-only value.
Available since 2025.4.6728.
DayPilot.Navigator.eventEndSpec"DateTime" - interprets the event end as an exact date and time value.
"Date" - interprets the event end as a date-only value.
"DateTime"JavaScript
const dp = new DayPilot.Navigator("dp", {
eventEndSpec: "Date",
// ...
});
dp.init();Angular
<daypilot-navigator [config]="config"></daypilot-navigator>config: DayPilot.NavigatorConfig = {
eventEndSpec: "Date",
// ...
};React
<DayPilotNavigator
eventEndSpec="Date"
{/* ... */}
/>Vue
<DayPilotNavigator
eventEndSpec="Date"
<!-- ... -->
/>