Doughnut with rounded edges can be implemented in Maui?

158 Views Asked by At

I created a donut chart with Syncfusion in a Maui application and I want it to have rounded edges. I want it to look like this: enter image description here

But currently is looking like this:

enter image description here

This is what I've tried:

<chart:SfCircularChart >
            <chart:DoughnutSeries ItemsSource="{Binding Data}"         
                InnerRadius="0.7"         
                XBindingPath="Product"
                YBindingPath="SalesRate"
                PaletteBrushes="{StaticResource Colors}">
            </chart:DoughnutSeries>
        </chart:SfCircularChart>

This style can be implemented in Maui with Syncfusion?

0

There are 0 best solutions below