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 |
|
Remarks
The Scheduler component displays a toolbar atop the view area:
Use the ShowToolbarArea
property to hide this toolbar:
<DxScheduler StartDate="DateTime.Today"
DataStorage="DataStorage"
ShowToolbarArea="false">
<Views>
<DxSchedulerDayView />
<DxSchedulerWeekView />
</Views>
</DxScheduler>
See Also