You cannot set the date format at the moment easily. There is no such property in the Material 2 Datepicker API , and the only right way to change the format is to provide you with your own DateAdapter . The official documentation does not give any instructions. Currently, there is only one basic implementation that defines formats according to locale . There are many complaints about this, and soon adapters should appear soon. You can try to use it based on the .js moment from this issue-thread or just wait.
You can also play with locales to get various formats in your Datepicker. But this is just a workaround until the correct official solution appears:
export class AppModule { constructor(private dateAdapter:DateAdapter<Date>) { dateAdapter.setLocale('de');
source share