blazor-devexpress-dot-blazor-433419c3.md
The toolbar item that allows you to navigate to the next time interval.
Namespace : DevExpress.Blazor
Assembly : DevExpress.Blazor.v25.2.dll
NuGet Package : DevExpress.Blazor
public class DxSchedulerNextIntervalToolbarItem :
SchedulerToolbarItemBase
Users can click Next Interval buttons to move one visible time frame forward.
The DxSchedulerNextIntervalToolbarItem partly supports toolbar item functionality. Refer to the following list for additional information on available options: API Reference.
Note that Next Interval buttons have a pre-defined tooltip, unlike standard toolbar items:
| Property | Toolbar Item Default Value | Next Interval Default Value |
|---|---|---|
| Tooltip | "" | A11y_Scheduler_Toolbar_NextTimePeriod |
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 DxSchedulerNextIntervalToolbarItem
See Also