The autoRefreshMaxCount property defines the maximum number of auto-refresh requests before the counter is reset.
Declaration
DayPilot.Gantt.autoRefreshMaxCountDefault Value
20Notes
The count is reset after a page reload or a callback.
Examples
JavaScript
const gantt = new DayPilot.Gantt("dp", {
autoRefreshMaxCount: 10,
// ...
});
gantt.init();Angular
<daypilot-gantt [config]="config"></daypilot-gantt>config: DayPilot.GanttConfig = {
autoRefreshMaxCount: 10,
// ...
};React
<DayPilotGantt
autoRefreshMaxCount={10}
{/* ... */}
/>Vue
<DayPilotGantt
:autoRefreshMaxCount="10"
<!-- ... -->
/>See Also
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot