Skip to main content
All docs
V24.1

DxProgressBar.CssClass Property

Specifies the name of a CSS class applied to the progress bar.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.1.dll

NuGet Package: DevExpress.Blazor

Declaration

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

Property Value

Type Description
String

The CSS class name.

Remarks

Assign a CSS class name to the CssClass property to customize the progress bar’s appearance.

<style>
    .bold-italic-text {
        font-style: italic;
        font-weight: bold;
    }
</style>

<DxProgressBar CssClass="bold-italic-text" />

Circular progress bar

See Also