The eventStartTime property (boolean) specifies whether the monthly calendar component displays the event start time.
Declaration
DayPilot.Month.eventStartTimeDefault Value
falseNotes
The monthly calendar uses the date/time format specified using the locale property.
Examples
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"
<!-- ... -->
/>See Also
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot