Resizing fontSize on state changing for createTextColumn/textColumn #220
-
I am helped with this module a lot. Thank You very much. let's say I have Grid with
then I have a textBox Component which is perhaps can I modify But that state only affects fontSize styling for selectColumn and rowHeader only if any Sir you could give some leads, thank you |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Hey @flamenji, <DynamicDataSheetGrid
style={{
// ...
'--font-size': fontSize,
}}
/> And then in your CSS: .dsg-container {
font-size: var(--font-size);
}
.dsg-input {
font-size: var(--font-size);
} |
Beta Was this translation helpful? Give feedback.
-
it works! thanks a bunch @nick-keller |
Beta Was this translation helpful? Give feedback.
Hey @flamenji,
You could:
And then in your CSS: