DxSchedulerDayViewBase.TimeScale Property
Specifies the appointment slot time interval.
Namespace: DevExpress.Blazor.Base
Assembly: DevExpress.Blazor.v24.1.dll
NuGet Package: DevExpress.Blazor
Declaration
[Parameter]
public TimeSpan TimeScale { get; set; }
Property Value
Type | Description |
---|---|
TimeSpan | 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.
<DxScheduler StartDate="@DateTime.Today" DataStorage="@DataStorage">
<DxSchedulerDayView TimeScale="@(new TimeSpan(0,30,0))"></DxSchedulerDayView>
</DxScheduler>
Online Demo
See Also