I'm using the JQuery version inside Angular, because there is no Rating component for Angular.
When I change the precision to 'half', the star that is half only appears when I hover the mouse over it.
When start
After mouse over
Part of my code:
this.ratingElement = kendo.jQuery(this.inputRating.nativeElement).kendoRating(
{
min: 1,
max: 5,
precision: "half",
readonly: true,
value: this.memberReviewsModel.stars
});
Does anyone have an idea how to resolve this?