DxSchedulerDayViewBase.DayCount Property
Specifies the number of days displayed in the Day View.
Namespace: DevExpress.Blazor.Base
Assembly: DevExpress.Blazor.v24.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 Day View.
The DayCount
property is not in effect for the DxSchedulerWeekView and DxSchedulerWorkWeekView objects.
<DxScheduler StartDate="@DateTime.Today" DataStorage="@DataStorage">
<DxSchedulerDayView ShowWorkTimeOnly="true" DayCount="3"></DxSchedulerDayView>
</DxScheduler>
See Also