0

I would like to pick only years option in the ng2-datepicker. How do i achieve this?

I could not find an option to disable the dates selection in the module

vivek raju
  • 165
  • 8

1 Answers1

0
import { DatepickerOptions } from 'ng2-datepicker';
import * as frLocale from 'date-fns/locale/fr';

let options: DatepickerOptions = {
  minYear: 1970,
  maxYear: 2030,
  displayFormat: 'YYYY'
}

Add options in your Datepicker function call