The autoRefreshInterval property defines the delay between auto-refresh requests in seconds.
DayPilot.Gantt.autoRefreshInterval60JavaScript
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"
<!-- ... -->
/>