Skip to main content
All docs
V25.1
  • DxViewer.RootCssClasses Property

    Specifies the names of the CSS classes that apply to the outside DIV of the component markup.

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v25.1.Viewer.dll

    NuGet Package: DevExpress.Blazor.Viewer

    Declaration

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

    Property Value

    Type Description
    String

    The CSS class names separated with a space.

    Remarks

    You can specify multiple CSS classes defined in the application theme for the DxReportViewer component. The default value is border border-secondary shadow rounded.

    <DxReportViewer @ref="reportViewer"
                    Report="Report"
                    RootCssClasses="vh-100" />
    

    View Example: Report Viewer for Blazor - Customization API

    For more information, review the following help topic: CSS Classes.

    See Also