mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 03:29:59 +08:00
1.3 KiB
1.3 KiB
category | type | cols | title |
---|---|---|---|
Components | Presentation | 1 | Calendar |
When to use container for displaying data in calendar form.
When to use
When data is in the form of date, such as schedule, timetable, prices calendar, Lunar calendar. This component also supports Year/Month switch.
API
<Calendar
dateCellRender={dateCellRender}
monthCellRender={monthCellRender}
onPanelChange={onPanelChange}
/>
Property | Description | Type | Default |
---|---|---|---|
value | set date | Date | current date |
defaultValue | set default date | Date | current date |
mode | can be set to month or year | string | month |
fullscreen | to set whether full-screen display | bool | true |
dateCellRender | to set the way of renderer the date cell | function(GregorianCalendar) | - |
monthCellRender | to set the way of renderer the month cell | function(GregorianCalendar) | - |
locale | set locale | object | defualt |
onPanelChange | the callback when panel change | function(date, mode) | - |