New to Telerik UI for WPF? Start a free 30-day trial
Precision
Updated on Sep 15, 2025
Users can use the Precision property to control the rating precision. The property have three predefined values:
-
Item - you can rate with whole item/star
-
Half - you can rate with half item/star
-
Exact - you can rate with custom precision
Example 1: Setting the Precision property to Item
XAML
<telerik:RadRating Precision="Item"
ToolTipService.ToolTip="{Binding RelativeSource={RelativeSource Self}, Path=Value}" />
Figure 1: Result from Example 1

Example 2: Setting the Precision to Half
XAML
<telerik:RadRating Precision="Half"
ToolTipService.ToolTip="{Binding RelativeSource={RelativeSource Self}, Path=Value}" />
Figure 2: Result from Example 2

Example 3: Setting the Precision to Exact
XAML
<telerik:RadRating Precision="Exact"
ToolTipService.ToolTip="{Binding RelativeSource={RelativeSource Self}, Path=Value}" />
Figure 3: Result from Example 3
