Skip to main content
All docs
V25.1
  • DxLoadingPanel.IndicatorVisible Property

    Specifies visibility of the Loading Panel’s indicator.

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v25.1.dll

    NuGet Package: DevExpress.Blazor

    Declaration

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

    Property Value

    Type Default Description
    Boolean true

    true to display the indicator; otherwise, false.

    Remarks

    Set the IndicatorVisible property to false to hide the indicator:

    <DxLoadingPanel Visible="true"
                    ApplyBackgroundShading="true"
                    IndicatorVisible="false"
                    CssClass="w-100">
        <DxMemo @bind-Text="@Text"
                Rows="10" />
    </DxLoadingPanel>
    
    @code {
        string Text = "Andrew received his BTS commercial in 1987 and a Ph.D. in international marketing at the University " +
                      "of Dallas in 1994. He speaks French and Italian fluently, and reads German. He joined the company as " +
                      "a sales representative. After that, he was promoted to sales manager in January 2005 and vice president " + 
                      "of sales in March 2006. Andrew is a member of the Sales Management Round table, Seattle Chamber of Commerce, and Pacific Rim Importers Association.";
    }
    

    No indicator

    See Also