DxViewer.RootCssClasses Property
In This Article
Specifies the names of the CSS classes that apply to the outside DIV of the component markup.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.2.Viewer.dll
NuGet Package: DevExpress.Blazor.Viewer
#Declaration
#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
.
razor
<DxReportViewer @ref="reportViewer"
Report="Report"
RootCssClasses="vh-100" />
For more information, review the following help topic: CSS Classes.
See Also