The eventStartTime property (boolean) specifies whether the monthly calendar component displays the event start time.
DayPilot.Month.eventStartTimefalseThe monthly calendar uses the date/time format specified using the locale property.
JavaScript
const month = new DayPilot.Month("dp", {
eventStartTime: true,
// ...
});
month.init();Angular
<daypilot-month [config]="config"></daypilot-month>config: DayPilot.MonthConfig = {
eventStartTime: true,
// ...
};React
<DayPilotMonth
eventStartTime={true}
{/* ... */}
/>Vue
<DayPilotMonth
:eventStartTime="true"
<!-- ... -->
/>