I am using Angular 6 material design mat-calendar. I am referring the below example. https://stackblitz.com/edit/angular-mat-calendar?file=src%2Fapp%2Fapp.component.html
But in mat-calendar how to set min and max proporty.
<mat-calendar [selected]="selectedDate" (selectedChange)="onSelect($event)"></mat-calendar>
I am trying to add like this, but it is not working.
<mat-calendar [selected]="selectedDate" (selectedChange)="onSelect($event)" [min]="mindate" [max]="maxdate"></mat-calendar>
But this is throwing error "Can't bind to 'min' since it isn't a known property of 'mat-calendar'."
Anyone can help me in this.