The Offset property can be used to push the pie slices away from the center of FlexPie, producing the exploded Pie Chart. This property accepts a double value to determine how far the pie slices should be pushed from the center.

The following code snippets demonstrate how to set the Offset property:
| XAML |
Copy Code
|
|---|---|
<Chart:C1FlexPie x:Name="pieChart" Width="auto" Height="auto" Offset="0.5" LegendPosition="Right" </Chart:C1FlexPie> |
|