The loadingLabelVisible property (boolean) enables or disables the calendar loading label

To display the loading label programmatically, you can use loadingStart().

Declaration

DayPilot.Calendar.loadingLabelVisible

Default Value

true

Examples

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:

ProductLitePro
DayPilot for JavaScript