How to modify space between each rating item in .NET MAUI Rating?
In the .NET MAUI Rating (SfRating), you can set the ItemSpacing property to adjust the space between each rating item. The ItemSpacing
property determines the spacing between the rating items, and the default value is 5.
XAML
<ContentPage.Content>
<rating:SfRating Value="3" ItemSpacing="20"/>
</ContentPage.Content>
C#
SfRating rating = new SfRating();
rating.Value = 3;
rating.ItemSpacing = 20;
OUTPUT
Conclusion
I hope you enjoyed learning how to modify the space between each rating item in .NET MAUI Rating (SfRating).
You can refer to our .NET MAUI Rating feature tour page to learn about its other groundbreaking feature representations. You can explore our .NET MAUI Rating documentation to understand how to present and manipulate data.
For current customers, you can check out our .NET MAUI components from the License and Downloads page. If you are new to Syncfusion®, try our 30-day free trial to check out our .NET MAUI Rating and other .NET MAUI components.
Please let us know in the comments section below if you have any queries or require clarification. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!