blazor-devexpress-dot-blazor-dot-dxcalendar-1-21b34a6d.md
Specifies the minimum date that can be selected in the calendar.
Namespace : DevExpress.Blazor
Assembly : DevExpress.Blazor.v25.2.dll
NuGet Package : DevExpress.Blazor
[Parameter]
public DateTime MinDate { get; set; }
| Type | Description |
|---|---|
| DateTime |
A DateTime value that specifies the minimum date.
|
Use the MinDate and MaxDate properties to specify a range of available dates. The calendar disables dates that are out of the range and hides navigation arrows for them.
The default minimum and maximum values are System.DateTime.MinValue and System.DateTime.MaxValue.
Note
<DxCalendar T="DateTime" MinDate="@(new DateTime(2020, 06, 11))" MaxDate="@(new DateTime(2020, 06, 25))" />
Run Demo: Calendar — Date Range
See Also