New to Telerik UI for Blazor? Download free 30-day trial

Label

The Rating allows you to display a label that shows the current value out of the max value right next to the component.

You can set the desired label via the Label parameter value.

<TelerikRating @bind-Value="@Value" Label="@Label" />

@code {
    private double Value { get; set; } = 1;
    private string Label => $"{Value} out of 5";
}

See Also

In this article