I am working in Angular 8 with ng Bootstrap Datepicker
I am getting limited range of Year in DatePicker box in year dorpdown
I am sharing my code
<div class="form-group">
<div class="input-group">
<input class="form-control" formControlName="doj" (click)="(role == 'RS' || role == 'TSO') ? e.toggle({year: 1224, month: 2 , day:1}) : null" [readonly]="true" placeholder="yyyy-mm-dd" name="dp" ngbDatepicker
#e="ngbDatepicker">
<div class="input-group-append">
<button class="btn btn-outline-secondary calendar" (click)="(role == 'RS' || role == 'TSO') ? e.toggle() : null" type="button"></button>
</div>
</div>
</div>
I am sharing Picture also