DayPilot.Navigator.month

The month property (number) sets the month displayed in the first month table of the Navigator.

Declaration

DayPilot.Navigator.month

Notes

Examples

JavaScript

const nav = new DayPilot.Navigator("dp", {
  startDate: null,
  month: 3,
  year: 2026,
  // ...
});
nav.init();

Angular

<daypilot-navigator [config]="config"></daypilot-navigator>
config: DayPilot.NavigatorConfig = {
  startDate: null,
  month: 3,
  year: 2026,
  // ...
};

React

<DayPilotNavigator
  startDate={null}
  month={3}
  year={2026}
  {/* ... */}
/>

Vue

<DayPilotNavigator
  :startDate="null"
  :month="3"
  :year="2026"
  <!-- ... -->
/>

See Also

DayPilot.Navigator.startDate

DayPilot.Navigator.year

DayPilot.Navigator Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript