Hi, I've been searching with no recents results, what is the way to set the Locale to numbers in an ultrawebgauge?
Thanks in advance
Hello Ricardo,
Appearance of the numbers in the gauge depends on the scale’s labels. If you need to format the numbers you should set FormatString of the labels. The format string should be set like this:
<DATA_VALUE:0>
If, for example you need to set currency format you may use this format string:
<DATA_VALUE:$# ##0.00>
Generally speaking format string consist of DATA_VALUE – this is the value coming from the component and .NET format string – this is what you can set as per your need.
Please let me know if this is what you are looking for or if I am missing something.
So, how can I set the format with client side locale, in a dynamically server side created gauge?