Precision Mode in Xamarin.Android Rating control
17 Jan 20251 minute to read
The precision mode defines the accuracy level of the SfRating control. It has Standard, Half and Exact options.
Standard
The rating item will be filled completely based on the rating value.
rating.Precision=Precision.Standard;
Half
The rating item will be filled partially based on the rating value.
rating.Precision=Precision.Half;
Exact
The rating item will be filled exactly based on the rating value.
rating.Precision=Precision.Exact;