The loadingLabelVisible property (boolean) enables or disables the loading indicator in the JavaScript Gantt Chart.
Declaration
DayPilot.Gantt.loadingLabelVisibleDefault Value
trueNotes
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
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot