I\'m setting up a mat-datepicker for DOB and traditionally the display format is MM/DD/YYYY,I need to change it to DD/MM/YYYY with less coding
I tried format tag in mat
use dateadapter from core
import { DateAdapter } from '@angular/material/core'; constructor(private dateAdapter: DateAdapter) { this.dateAdapter.setLocale('en-GB'); //dd/MM/yyyy }
`