AC Formatter reading numbers as text (therefore formatting options do not appear or fail)

Yes it is the expected behavior. The decimal values do not fit the JavaScript number type so it becomes a string.
You need to convert them to number if you want to apply numeric formatters to them or do any calculations.

1 Like