EndValue Property (Range)
Gets or sets the end value of the range. This is a bindable property.
Syntax
Example
This sample shows how to set the EndValue of the range
void MyPage() { SfCircularGauge gauge = new SfCircularGauge(); Scale scale = new Scale(); Range range = new Range(); range.StartValue = 10; scale.Ranges.Add(range); gauge.Scales.Add(scale); }
AssemblyVersion
Syncfusion.SfGauge.XForms: 16.4451.0.52
See Also