DxSchedulerDayViewBase.TimeScale Property
In This Article
Specifies the appointment slot time interval.
Namespace: DevExpress.Blazor.Base
Assembly: DevExpress.Blazor.v24.2.dll
NuGet Package: DevExpress.Blazor
#Declaration
C#
[Parameter]
public TimeSpan TimeScale { get; set; }
#Property Value
Type | Description |
---|---|
Time |
Specifies the time interval of an appointment slot. |
#Remarks
Use this property to specify the time interval of an appointment slot. In this example, TimeScale is set to 30 minutes.
Razor
<DxScheduler StartDate="@DateTime.Today" DataStorage="@DataStorage">
<DxSchedulerDayView TimeScale="@(new TimeSpan(0,30,0))"></DxSchedulerDayView>
</DxScheduler>
#Online Demo
See Also