Hello.
Currently I use the following NumberFormatter:
<mx:NumberFormatter id="numberFormatter" precision="1" useThousandsSeparator="true" />
so it changes 5.43234234 so 5.4.
I want the NumberFormatter to not show any precision if there isn't one.
which means that if the number is 5.0, i want it to format it to 5, and not to 5.0.
how can I do so?
using flex 4.1
thanks