Skip to main content
All docs
V23.2

DxLoadingPanel.IndicatorAreaVisible Property

Specifies the indicator’s area visibility.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v23.2.dll

NuGet Package: DevExpress.Blazor

Declaration

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

Property Value

Type Default Description
Boolean true

true to display the area; otherwise, false.

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:

Indicator area

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