Simple Gauge value format

I´m trying to add some format into a Gauge value, but I can´t, any idea how to do so?
image

In a text field it comes by default
image

when I add it as a prop:

I got the error
image

You can't just add random props and hope they work.

How do you want the data formatted?

1 Like

Thanks. Instead 1843828728 I would lke 1,843 mb

Are you using the comma as the decimal separator, or as the hundreds separator?

For the mb units you can add that to the props.label.units.

1 Like

Right, we using . for milesimal separator here

I don't think you can have the number displayed with a comma as a hundreds seperator.

If your value of 1843828728 is actually 1843.828728, then you will need to do an expression on the value to divide your number by 1000000. And then set your props.label.maxDecimal the number of decimals you want to show.

1 Like

ok thanks bschroeder