The skipMonths property (number) configures how many months to skip when using the "<" and ">" icons in the Navigator header.
DayPilot.Navigator.skipMonths1In most cases, you will want to use the same value as showMonths.
JavaScript
const dp = new DayPilot.Navigator("dp", {
showMonths: 3,
skipMonths: 3,
// ...
});
dp.init();Angular
<daypilot-navigator [config]="config"></daypilot-navigator>config: DayPilot.NavigatorConfig = {
showMonths: 3,
skipMonths: 3,
// ...
};React
<DayPilotNavigator
showMonths={3}
skipMonths={3}
{/* ... */}
/>Vue
<DayPilotNavigator
:showMonths="3"
:skipMonths="3"
<!-- ... -->
/>