Skip to main content

DxScheduler.FirstDayOfWeek Property

Specifies the first day of the week.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v23.2.dll

NuGet Package: DevExpress.Blazor

Declaration

[DefaultValue(DayOfWeek.Sunday)]
[Parameter]
public DayOfWeek FirstDayOfWeek { get; set; }

Property Value

Type Default Description
DayOfWeek Sunday

The day of the week.

Remarks

Use the FirstDayOfWeek property to specify the first day of the week in a Scheduler View.

<DxScheduler FirstDayOfWeek="DayOfWeek.Tuesday" DataStorage="@DataStorage">
    ...
</DxScheduler>

Scheduler - First day of the week

Run Demo: Scheduler — Week View

See Also