DayPilot.Gantt.loadingLabelVisible

The loadingLabelVisible property (boolean) enables or disables the loading indicator in the JavaScript Gantt Chart.

Declaration

DayPilot.Gantt.loadingLabelVisible

Default Value

true

Notes

The loading label is shown only if the operation takes more than 100 ms.

Examples

JavaScript

const gantt = new DayPilot.Gantt("dp", {
  loadingLabelVisible: false,
  // ...
});
gantt.init();

Angular

<daypilot-gantt [config]="config"></daypilot-gantt>
config: DayPilot.GanttConfig = {
  loadingLabelVisible: false,
  // ...
};

React

<DayPilotGantt
  loadingLabelVisible={false}
  {/* ... */}
/>

Vue

<DayPilotGantt
  :loadingLabelVisible="false"
  <!-- ... -->
/>

See Also

DayPilot.Gantt Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript