The loadingLabelText property (string) sets the HTML displayed by the loading indicator in the JavaScript Gantt Chart.
DayPilot.Gantt.loadingLabelText"Loading..."JavaScript
const gantt = new DayPilot.Gantt("dp", {
loadingLabelText: "Please wait...",
// ...
});
gantt.init();Angular
<daypilot-gantt [config]="config"></daypilot-gantt>config: DayPilot.GanttConfig = {
loadingLabelText: "Please wait...",
// ...
};React
<DayPilotGantt
loadingLabelText="Please wait..."
{/* ... */}
/>Vue
<DayPilotGantt
loadingLabelText="Please wait..."
<!-- ... -->
/>