Gets or sets the direction of rating element paint (Standard, Reversed).
Orientation
Gets or sets the orientation of the rating control.
SelectionMode
Gets or sets the selection mode of the rating control.
Items
Gets the rating items collection.
Value
Gets or sets the average value of rating element.
Minimum
Gets or sets the minimum value of rating element.
Maximum
Gets or sets the maximum value of rating element.
Caption
Gets or sets the text of the Caption label.
Subcaption
Gets or sets the text of the Sub Caption label.
Description
Gets or sets the text of the description label.
RatingElement
Gets the instance of RadRatingElement wrapped by this control. RadRatingElement is the main element in the hierarchy tree and encapsulates the actual functionality of RadRating.
ReadOnly
Gets or sets whether the rating is ReadOnly. The Value of the element can still be set in ReadOnly mode, nothing else.
Occurs when the value is being changed. Cancelable event.
ValueChanged
Occurs before the value of the RatingElement is changed.
You can find below how to set the aforementioned properties and how they affect RadRating:
ShowItemToolTips - by default RadRating shows tooltips when hovering the items. The user can disable this functionality by setting ShowItemToolTips property to False:
C#
this.radRating1.ShowItemToolTips =false;
VB.NET
Me.RadRating1.ShowItemToolTips =False
ShowItemToolTips=false
ShowItemToolTips=true
RightToLeft - RadRating supports RightToLeft functionality. It is disabled by default, so you should enable it: