blazor-devexpress-dot-blazor-ce889ffa.md
The toolbar item that allows you to navigate to the previous time interval.
Namespace : DevExpress.Blazor
Assembly : DevExpress.Blazor.v25.2.dll
NuGet Package : DevExpress.Blazor
public class DxSchedulerPreviousIntervalToolbarItem :
SchedulerToolbarItemBase
Users can click Previous Interval button to move one visible time frame backward.
The DxSchedulerPreviousIntervalToolbarItem partly supports toolbar item functionality. Refer to the following list for additional 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:
<DxScheduler StartDate="DateTime.Today"
DataStorage="DataStorage">
<Views>
<DxSchedulerDayView />
</Views>
<ToolbarItems>
<DxSchedulerTodayToolbarItem />
<DxSchedulerDateNavigatorToolbarItem />
<DxSchedulerPreviousIntervalToolbarItem BeginGroup="true" Alignment="ToolbarItemAlignment.Right" />
<DxSchedulerNextIntervalToolbarItem />
</ToolbarItems>
</DxScheduler>
Object ComponentBase DxComponentBase DxModelComponent DxToolbarItemBase DxToolbarItem DevExpress.Blazor.Scheduler.Internal.SchedulerToolbarItemBase DxSchedulerPreviousIntervalToolbarItem
See Also