Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

DxLoadingPanel.IndicatorAreaVisible Property

Specifies the indicator’s area visibility.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.2.dll

NuGet Package: DevExpress.Blazor

#Declaration

C#
[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:

Razor
<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