The loadingLabelVisible property (boolean) enables or disables the calendar loading label.
To display the loading label programmatically, you can use loadingStart().
DayPilot.Calendar.loadingLabelVisibletrueJavaScript
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"
<!-- ... -->
/>