
You can define the number of months that will be skipped when clicking previous ('<') and next ('>') links.
Typically, you will want to use the value of the showMonths property (see number of months).
JavaScript Example
<div id="nav"></div>
<script>
const nav = new DayPilot.Navigator("nav", {
// ...
showMonths: 3,
skipMonths: 3
});
nav.init();
</script>
DayPilot