maxDate property

  1. @Input()
Date? maxDate
getter/setter pair

Dates later than maxDate cannot be chosen.

Defaults to December 31, ten years in the future. Set this to the latest date which makes sense in your domain context. e.g. For apps which analyse historical data, this could be the current day.

Implementation

@Input()
Date? maxDate;