Hi all,
Below is how I use to create a pointer however it seems to be deprecated in newer versions of the controls:
DaysGauge.MainScale.Pointers.Add(pointer1)
pointer1.EnableAnimation = True
pointer1.PointerCapDiameter = 0
pointer1.Value = DaysUsedPercent
pointer1.NeedlePointerStrokeThickness = 7
pointer1.NeedlePointerStroke = New SolidColorBrush(Colors.Gray)
Dim pointer1 As New CircularPointer()
Is there an example of how Ican create a Circular Pointer in code using the new method?
Cheers, Leigh.