How to stop rounding for numeric fields

Tags: #<Tag:0x00007f0b033b4420>

Hi,

I have numeric column for which the pattern is always 0.000 means I have 3 decimal places.
E.X if i enter 1.234, it will render 1.234 and if i enter 4.5 , it is auto formating to 4.500 . This is good,

But for 1.2345 it is rounding to 1.235 which is not correct. It should still give me 1.234.

How can i avoid rounding here?

Thank You.

Hey @kirank.csp

you can create a custom renderer that uses Math.Floor() function on the decimal places.