DxLoadingPanel.IndicatorAreaVisible Property
Specifies the indicator’s area visibility.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.1.dll
NuGet Package: DevExpress.Blazor
Declaration
[DefaultValue(true)]
[Parameter]
public bool IndicatorAreaVisible { get; set; }
Property Value
Type | Default | Description |
---|---|---|
Boolean | true |
|
Remarks
The Loading Panel displays its indicator and Text in a container that applies shades, borders, background, and other styles – area. You can display or remove these styles:
The following example sets the IndicatorAreaVisible
to false
to hide the indicator area:
<DxLoadingPanel Visible="true"
IndicatorAreaVisible="false"
CssClass="w-100">
<DxMemo @bind-Text="@Text"
Rows="10" />
</DxLoadingPanel>
Note that if you shade the background (the ApplyBackgroundShading is true
) and hide the indicator area, the indicator uses colors that contrast with the shade instead of theme-based ones.
See Also