TAdvGauge Format

Hi,

I'm trying to set the Format property of the TAdvGauge,
without success.

I need to write a label like this: "POSITION mV" so if position is 3,4,
the label would be "3,4 mV"

I've tryed using #, 0, n, no character is working, which type of format I have to use in this property?
Example: if I put "#.# mV" in format property, the result is exactly "#.# mV", the position value is not formatted.

I can't find any documentation about this component.

Best regards

Set format to: '%.2f mV'

More info on format settings can be found here:

http://www.delphibasics.co.uk/RTL.asp?Name=format 

Thanks.