Skip to main content
All docs
V25.1
  • DxScheduler.ShowToolbarArea Property

    Specifies whether to display the toolbar.

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v25.1.dll

    NuGet Package: DevExpress.Blazor

    Declaration

    [DefaultValue(true)]
    [Parameter]
    public bool ShowToolbarArea { get; set; }

    Property Value

    Type Default Description
    Boolean true

    true to display the toolbar; otherwise, false.

    Remarks

    The Scheduler component displays a toolbar atop the view area:

    Scheduler - Toolbar

    Use the ShowToolbarArea property to hide this toolbar:

    <DxScheduler StartDate="DateTime.Today"
                 DataStorage="DataStorage"
                 ShowToolbarArea="false">
        <Views>
            <DxSchedulerDayView />
            <DxSchedulerWeekView />
        </Views>
    </DxScheduler>
    
    See Also