DxScheduler.FirstDayOfWeek Property
Specifies the first day of the week.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.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>
See Also