The loadingLabelVisible property (boolean) enables or disables the loading indicator in the JavaScript Gantt Chart.
DayPilot.Gantt.loadingLabelVisibletrueThe loading label is shown only if the operation takes more than 100 ms.
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"
<!-- ... -->
/>