The autoRefreshInterval property (number) specifies the interval between onAutoRefresh event calls in seconds.
DayPilot.Calendar.autoRefreshInterval60JavaScript
const dp = new DayPilot.Calendar("dp", {
autoRefreshInterval: 120,
// ...
});
dp.init();Angular
<daypilot-calendar [config]="config"></daypilot-calendar>config: DayPilot.CalendarConfig = {
autoRefreshInterval: 120,
// ...
};React
<DayPilotCalendar
autoRefreshInterval={120}
{/* ... */}
/>Vue
<DayPilotCalendar
:autoRefreshInterval="120"
<!-- ... -->
/>