I have a numerical data with 5 decimal places that the database returns to me, the problem I have is that I cannot render it in the component with TValue="Decimal", since I have other components that do render values with 2 decimal places, I also put different format types like: Format="#,#00.00000" Format="n5"
I was able to solve the rendering by changing to double type, why doesn't it work with Decimal type?