I am currently using the angular material datepicker, and although the startView is set to month or year, I would like it to be multi-year so that I can choose a birthdate starting with the year, then the month, and finally the day.
Despite my attempts at writing custom code to change the view after opening, I do not believe it is possible.
@ViewChild('picker') picker: any;
test() {
this.picker.open();
console.log(this.picker);
// It would be helpful if there was a way to set the view to 'multi-year'
}