The following css will change the font size for a datagrid in blazor when the RowRenderingMode is set to Horizontal:
.e-grid .e-rowcell { font-size: 9px; height: auto;}
However, when
RowRenderingMode
is set to Vertical the css makes no change to the font size.
Is it possible to change the font-size of a datagrid when in Vertical row mode?
Thanks