Skip to main content
All docs
V23.2

DxReportViewer.RootCssClasses Property

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

Namespace: DevExpress.Blazor.Reporting

Assembly: DevExpress.Blazor.Reporting.v23.2.Viewer.dll

NuGet Package: DevExpress.Blazor.Reporting.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