Unplanned
Last Updated: 05 Jan 2017 11:13 by ADMIN
The Visibility property of GaugeRange is not applied when it is set or bound in xaml

As a workaround if you set the Visibility in code after the range is loaded, the property's value is applied correctly.
Unplanned
Last Updated: 03 Oct 2017 11:29 by ADMIN
As a workaround you need to use a ProportionalBrush mode instead.
Unplanned
Last Updated: 21 Aug 2018 16:31 by Vladimir
ADMIN
Created by: Vladimir Stoyanov
Comments: 0
Category: Gauge
Type: Bug Report
2

			
Unplanned
Last Updated: 03 Jan 2017 21:09 by ADMIN
If the numeric indicator is visualized on a large area (its container has large size), its segments are overlapping.
Unplanned
Last Updated: 12 Sep 2018 14:43 by ADMIN
The visual elements generated for the GaugeRange objects are not cleared when you clear the Ranges collection of the scale. This happens if you call the Clear() method of the Ranges collection.

To work this around you can clear the ranges using the Remove() method instead of clear.

while (scale.Ranges.Count > 0)
{
    scale.Ranges.Remove(scale.Ranges.LastOrDefault());
}