07-22-2019 13:46 PM - last edited 07-22-2019 15:56 PM
Radial Gauge Control
The Gauge Control displays a value in a certain range using a needle on a circular face.
Property | Description |
---|---|
Default | Sets the default % value of the Gauge. Range from 0-100. |
Indicator Image Url | Sets the image representing the needle of the gauge. |
Gauge Background Url | Sets the image representing the semi-circle |
The gauge component has the same problem as the map control in countries that use comma as their decimal sign.
Fix:
Convert the rotate value from
(Max(Min(Gauge.Value; 100);0) * 180)/100 - 90
to
Substitute(Text((Max(Min(Gauge.Value; 100);0) * 180)/100 - 90);",";".")
how to show numbers?