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.v21.1.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>

Scheduler - A day count in Day view

Online Demo

Scheduler — View Types

See Also