The loadingLabelVisible property (boolean) enables or disables the calendar "Loading..." label in the JavaScript Month component.
DayPilot.Month.loadingLabelVisibletrueJavaScript
const dp = new DayPilot.Month("dp", {
loadingLabelVisible: false,
// ...
});
dp.init();Angular
<daypilot-month [config]="config"></daypilot-month>config: DayPilot.MonthConfig = {
loadingLabelVisible: false,
// ...
};React
<DayPilotMonth
loadingLabelVisible={false}
{/* ... */}
/>Vue
<DayPilotMonth
:loadingLabelVisible="false"
<!-- ... -->
/>