The eventEndTime property (boolean) specifies whether the monthly calendar displays the event end time.
DayPilot.Month.eventEndTimefalseThe displayed time uses the date/time format specified by DayPilot.Month.locale.
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"
<!-- ... -->
/>