The eventEndTime property (boolean) specifies whether the monthly calendar displays the event end time.
Declaration
DayPilot.Month.eventEndTimeDefault Value
falseNotes
The displayed time uses the date/time format specified by DayPilot.Month.locale.
Examples
JavaScript
const month = new DayPilot.Month("dp", {
eventEndTime: true,
// ...
});
month.init();Angular
<daypilot-month [config]="config"></daypilot-month>config: DayPilot.MonthConfig = {
eventEndTime: true,
// ...
};React
<DayPilotMonth
eventEndTime={true}
{/* ... */}
/>Vue
<DayPilotMonth
:eventEndTime="true"
<!-- ... -->
/>See Also
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot