Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

DxSchedulerDayViewBase.TimeScale Property

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

Razor
<DxScheduler StartDate="@DateTime.Today" DataStorage="@DataStorage">
    <DxSchedulerDayView TimeScale="@(new TimeSpan(0,30,0))"></DxSchedulerDayView>
</DxScheduler>

Scheduler - A time indicator in Day view

#Online Demo

Scheduler — View Types

See Also