Articles in this section
Category / Section

How to modify space between each rating item.?

1 min read

To provide spacing to Rating, follow the given steps:

Step 1: Create the Rating sample and include the necessary source files.

Step 2: First create an instance for Rating.

Step 3: By using the object, set itemSpacing property to any numeric value. And set the Contentview.

Step 4: And by using StackLayout add the children rating.

Code snippet:

public class Rating
{
    public Rating()
    {
        SfRating  rating = new SfRating();
        rating.ItemSpacing = 30;
        this.Content = GetRating();
     }
    private StackLayout GetRating()
   {
        var mainStack = new StackLayout
        {
 Children = { rating }
         };
          return mainStack;
 }
}

 

The following image shows spacing of Rating:

SfRating ItemSpacing

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied