DayPilot.Calendar.autoRefreshInterval

The autoRefreshInterval property (number) specifies the interval between onAutoRefresh event calls in seconds.

Declaration

DayPilot.Calendar.autoRefreshInterval

Default Value

60

Examples

JavaScript

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"
  <!-- ... -->
/>

See Also

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript