Skip to main content
All docs
V23.2

DxLoadingPanel.IndicatorCssClass Property

Specifies the CSS class name applied to the indicator.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v23.2.dll

NuGet Package: DevExpress.Blazor

Declaration

[Parameter]
public string IndicatorCssClass { get; set; }

Property Value

Type Description
String

The CSS class name.

Remarks

Use the CssClass property to apply custom styles to the Loading Panel’s indicator.

<style>
    .my-indicator {
        <!-- your CSS rules -->
    }
</style>

<DxLoadingPanel Visible="true"
                IndicatorCssClass="my-indicator"
                ApplyBackgroundShading="true"
                CssClass="w-100">
    <DxMemo @bind-Text="@Text"
            Rows="10" />
</DxLoadingPanel>
See Also