Enum PrecisionType
Specifies the precision type of the rating component, which determines the granularity of the rating and allows users to provide ratings with varying levels of precision.
Namespace: Syncfusion.Blazor.Inputs
Assembly: Syncfusion.Blazor.dll
Syntax
public enum PrecisionType
Remarks
The precision type controls how finely users can adjust their rating selections, from whole number increments to decimal fractions. This enumeration is used by the Precision property to configure the rating behavior.
Fields
| Name | Description |
|---|---|
| Exact | The rating is increased in increments of 0.1. For example, if the current rating is 3.9, the next possible ratings are 4, 4.1, 4.2, and so on. |
| Full | The rating is increased in whole number increments. For example, if the current rating is 3, the next possible ratings are 4, 5, and so on. |
| Half | The rating is increased in increments of 0.5 (half). For example, if the current rating is 3.5, the next possible ratings are 4, 4.5, 5, and so on. |
| Quarter | The rating is increased in increments of 0.25 (quarter). For example, if the current rating is 3.75, the next possible ratings are 4, 4.25, 4.5, and so on. |