Skip to main content
Version: 9.14.0

Grid and Months

Outside Days​

By default, DayPicker hides the days falling into other months. Use showOutsideDays to display them.

<DayPicker showOutsideDays />

Fixed Weeks​

In a year, months can have between 4 and 6 weeks. Use the fixedWeeks prop to always display 6 weeks per month. This will prevent the grid from changing its height while navigating the calendar.

<DayPicker fixedWeeks showWeekNumber />

Multiple Months​

To display multiple months in the calendar, use the numberOfMonths prop.

<DayPicker numberOfMonths={2} />

Paged Navigation​

With pagedNavigation, the navigation jumps by the specified number of months at a time.

<DayPicker numberOfMonths={2} pagedNavigation />