The autoRefreshMaxCount property (number) specifies the maximum number of onAutoRefresh invocations.
DayPilot.Calendar.autoRefreshMaxCount20JavaScript
const dp = new DayPilot.Calendar("dp", {
autoRefreshMaxCount: 100,
// ...
});
dp.init();Angular
<daypilot-calendar [config]="config"></daypilot-calendar>config: DayPilot.CalendarConfig = {
autoRefreshMaxCount: 100,
// ...
};React
<DayPilotCalendar
autoRefreshMaxCount={100}
{/* ... */}
/>Vue
<DayPilotCalendar
:autoRefreshMaxCount="100"
<!-- ... -->
/>