The autoRefreshInterval property (number) specifies the interval between onAutoRefresh event calls in seconds.
Declaration
DayPilot.Month.autoRefreshIntervalDefault Value
60Examples
JavaScript
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"
<!-- ... -->
/>See Also
DayPilot.Month.autoRefreshEnabled
DayPilot.Month.autoRefreshMaxCount
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot