I am using the following code for the Date field in Blazor :
<DateEdit id="dateOfBirth"
TValue="DateTime?"
Class="form-control"
Date="BiographicalInformationData.DateOfBirth"
DateChanged="OnDateOfBirthChanged" >
</DateEdit>
Here, this datepicker picks up the date format of the System. How can one hard code the date format for this date picker?