The loadingLabelVisible property (boolean) enables or disables the calendar loading label.
To display the loading label programmatically, you can use loadingStart().
Declaration
DayPilot.Calendar.loadingLabelVisibleDefault Value
trueExamples
JavaScript
const calendar = new DayPilot.Calendar("dp", {
loadingLabelVisible: false,
// ...
});
calendar.init();Angular
<daypilot-calendar [config]="config"></daypilot-calendar>config: DayPilot.CalendarConfig = {
loadingLabelVisible: false,
// ...
};React
<DayPilotCalendar
loadingLabelVisible={false}
{/* ... */}
/>Vue
<DayPilotCalendar
:loadingLabelVisible="false"
<!-- ... -->
/>See Also
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot