Skip to main content
All docs
V25.1
  • DxSchedulerPreviousIntervalToolbarItem Class

    The toolbar item that allows you to navigate to the previous time interval.

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v25.1.dll

    NuGet Package: DevExpress.Blazor

    Declaration

    public class DxSchedulerPreviousIntervalToolbarItem :
        SchedulerToolbarItemBase

    Remarks

    Users can click Previous Interval button to move one visible time frame backward.

    Scheduler Toolbar - Previous Time Interval

    The DxSchedulerPreviousIntervalToolbarItem partly supports toolbar item functionality. Refer to the following list for more information on available options: API Reference.

    Note that Previous Interval buttons have a pre-defined tooltip and start a new group by default, unlike regular toolbar items:

    Property Toolbar Item Default Value Previous Interval Default Value
    BeginGroup false true
    Tooltip "" A11y_Scheduler_Toolbar_PreviousTimePeriod

    The following example aligns Next Interval and Previous Interval buttons to the right:

    Custom Toolbar Item Alignment

    <DxScheduler StartDate="DateTime.Today"
                 DataStorage="DataStorage">
        <Views>
            <DxSchedulerDayView />
        </Views>
        <ToolbarItems>
            <DxSchedulerTodayToolbarItem />
            <DxSchedulerDateNavigatorToolbarItem />
            <DxSchedulerPreviousIntervalToolbarItem BeginGroup="true" Alignment="ToolbarItemAlignment.Right" />
            <DxSchedulerNextIntervalToolbarItem />
        </ToolbarItems>
    </DxScheduler>
    

    Inheritance

    Object
    ComponentBase
    DxComponentBase
    DevExpress.Blazor.Base.DxAsyncDisposableComponent
    DxSettingsComponent
    DxToolbarItemBase
    DxToolbarItem
    DevExpress.Blazor.Scheduler.Internal.SchedulerToolbarItemBase
    DxSchedulerPreviousIntervalToolbarItem
    See Also