New Android Release 2.19.1

It seems it is not.

Do you have a 2.20.0 app?

could you show an example of your sketch with this set property call?

Just updated.

I’m using JS…the code related to that is:

let precision_MIN_CURRENCY_ONE;
if (config.MIN_CURRENCY_ONE > 100){
	precision_MIN_CURRENCY_ONE = 0;
} else if (config.MIN_CURRENCY_ONE > 10){
	precision_MIN_CURRENCY_ONE = 1;
} else if (config.MIN_CURRENCY_ONE > 1){
	precision_MIN_CURRENCY_ONE = 2;
} else {
	precision_MIN_CURRENCY_ONE = 3;
}
blynk.setProperty(5, "maximumFractionDigits", precision_MIN_CURRENCY_ONE);

My bad. I commited this change to wrong repo :slight_smile:.

:sweat_smile:

:slight_smile:

And where is the documentation you were mentioning before?
I took “maximumFractionDigits” from a post here if I remember well.
I din’t find anything in the docs related to this.

“maximumFractionDigits” is a correct name for this property.