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