.NET MAUI Path Geometry Types
The Path provides a set of preconfigured geometry types and enables you to set custom geometries as well.
Built-In Geometries
The available built-in geometry types are included in the Telerik.Maui.Controls.Paths.RadGeometry
class.
The supported preconfigured geometries are:
- Star
- Circle
- Heart
- Diamond
Custom Geometries
You can also create a custom geometry, which will be visualized by the Path. For that purpose, create an object of type RadPathGeometry
and add a RadPathFigure
with the needed segments.
The following example shows a Path with an Arc definition:
Add the following namespace:
The following image shows the end result.