The loadingLabelText property (string) sets the HTML displayed by the loading indicator in the JavaScript Gantt Chart.
Declaration
DayPilot.Gantt.loadingLabelTextDefault Value
"Loading..."Examples
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..."
<!-- ... -->
/>See Also
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot