The autoRefreshInterval property defines the delay between auto-refresh requests in seconds.
Declaration
DayPilot.Gantt.autoRefreshIntervalDefault Value
60Examples
JavaScript
const gantt = new DayPilot.Gantt("dp", {
autoRefreshInterval: 120,
// ...
});
gantt.init();Angular
<daypilot-gantt [config]="config"></daypilot-gantt>config: DayPilot.GanttConfig = {
autoRefreshInterval: 120,
// ...
};React
<DayPilotGantt
autoRefreshInterval={120}
{/* ... */}
/>Vue
<DayPilotGantt
:autoRefreshInterval="120"
<!-- ... -->
/>See Also
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot