Skip to main content
A newer version of this page is available. .

DxSchedulerDayViewBase.DayCount Property

Specifies the number of days displayed in the View.

Namespace: DevExpress.Blazor.Base

Assembly: DevExpress.Blazor.v20.2.dll

NuGet Package: DevExpress.Blazor

Declaration

[DefaultValue(1)]
[Parameter]
public int DayCount { get; set; }

Property Value

Type Default Description
Int32 1

A number of days.

Remarks

Use this property to specify the number of days displayed simultaneously in the View.

<DxScheduler StartDate="@DateTime.Today" DataStorage="@DataStorage">
    <DxSchedulerDayView ShowWorkTimeOnly="true" DayCount="3"></DxSchedulerDayView>
</DxScheduler>

Online Demo

Scheduler — View Types

See Also