Skip to content

YearCalendar API

API documentation for the React YearCalendar component. Learn about the available props and the CSS API.

Import

import YearCalendar from '@mui/x-date-pickers-pro/YearCalendar';
// or
import YearCalendar from '@mui/x-date-pickers/YearCalendar';
// or
import { YearCalendar } from '@mui/x-date-pickers-pro';
// or
import { YearCalendar } from '@mui/x-date-pickers';
You can learn about the difference by reading this guide on minimizing bundle size.

Component name

The name MuiYearCalendar can be used when providing default props or style overrides in the theme.

Props

NameTypeDefaultDescription
classesobject
Override or extend the styles applied to the component. See CSS API below for more details.
classNamestring
className applied to the root element.
defaultValueany
The default selected value. Used when the component is not controlled.
disabledboolfalse
If true picker is disabled
disableFutureboolfalse
If true disable values before the current date for date components, time for time components and both for date time components.
disableHighlightTodayboolfalse
If true, today's date is rendering without highlighting with circle.
disablePastboolfalse
If true disable values after the current date for date components, time for time components and both for date time components.
maxDateany
Maximal selectable date.
minDateany
Minimal selectable date.
onChangefunc
Callback fired when the value changes.

Signature:
function(value: TDate | null) => void
value: The new value.
readOnlyboolfalse
If true picker is readonly
shouldDisableYearfunc
Disable specific year.

Signature:
function(year: TDate) => boolean
year: The year to test.
returns (boolean): If true the year will be disabled.
sxArray<func
| object
| bool>
| func
| object
The system prop that allows defining system overrides as well as additional CSS styles. See the `sx` page for more details.
valueany
The selected value. Used when the component is controlled.

The component cannot hold a ref.

CSS

Rule nameGlobal classDescription
root.MuiYearCalendar-rootStyles applied to the root element.

You can override the style of the component using one of these customization options:

Demos