# DatePicker > ![icon-note.gif](public_sys-resources/icon-note.gif) **NOTE** > This component is supported since API version 8. Updates will be marked with a superscript to indicate their earliest API version. The **\** component allows users to select a date from the given range. ## Required Permissions No ## Child Components No ## APIs DatePicker(options?: DatePickerOptions) Creates a date picker in the given date range. - options parameters | Name| Type| Mandatory| Default Value| Description| | -------- | -------- | -------- | -------- | -------- | | start | Date | No| Date('1970-1-1') | Start date of the picker.| | end | Date | No| Date('2100-12-31') | End date of the picker.| | selected | Date | No| Current system date| Date of the selected item.| ## Attributes | Name| Type| Default Value| Description| | -------- | -------- | -------- | -------- | | lunar | boolean | false | Whether to display the lunar calendar.
- **true**: Display the lunar calendar.
- **false**: Do not display the lunar calendar.| ## Events | Name| Description| | -------- | -------- | | onChange(callback: (value: DatePickerResult) => void) | Triggered when a date is selected.| ### DatePickerResult | Name| Type| Description| | -------- | -------- | -------- | | year | number | Year of the selected date.| | month | number | Month of the selected date. The value ranges from 0 to 11. The value **0** indicates January, and the value **11** indicates December. | | day | number | Day of the selected date.| ## Example ### Date Picker Sample Code (With Lunar Calendar) ``` @Entry @Component struct DatePickerExample01 { private selectedDate: Date = new Date('2021-08-08') build() { Column() { DatePicker({ start: new Date('1970-1-1'), end: new Date('2100-1-1'), selected: this.selectedDate, }) .lunar(true) .onChange((date: DatePickerResult) => { console.info('select current date is: ' + JSON.stringify(date)) }) }.width('100%') } } ``` ### Date Picker Sample Code (No Lunar Calendar) ``` @Entry @Component struct DatePickerExample02 { private selectedDate: Date = new Date('2021-08-08') build() { Column() { DatePicker({ start: new Date('1970-1-1'), end: new Date('2100-1-1'), selected: this.selectedDate, }) .lunar(false) .onChange((date: DatePickerResult) => { console.info('select current date is: ' + JSON.stringify(date)) }) }.width('100%') } } ```