Hi. Is there a way to set the font size of a Numeric column in a Datagrid Edit Template? I can set it using the Style clause on (it seems) any other column type - dropdown, textbox - but not on a numeric?
Thanks
Reg
Hi. Is there a way to set the font size of a Numeric column in a Datagrid Edit Template? I can set it using the Style clause on (it seems) any other column type - dropdown, textbox - but not on a numeric?
Thanks
Reg
Do you want to set inline style? Can you post more details?
Hi,
Thanks for coming back to me.
I really just want the font used in a Datagrid to be smaller than the default. I’ve used inline styling - font-size:small - on other columns, but it has no effect on Numeric columns.
Cheers
Reg
You can also use the --rz-input-font-size
CSS variable:
<RadzenNumeric style="--rz-input-font-size: small" />
The browser's developer tools reveal the CSS variable that specifies the value of a certain CSS property:
Excellent, many thanks
Excellent, many thanks...