ComponentOne FlexChart for WinForms
Selection
FlexPie > Selection

You can choose what element of FlexPie is selected when you click anywhere on the control by setting the SelectionMode property. This property provides three options:

After setting the SelectionMode property to Point, you can change the position of the selected pie slice by setting the SelectedItemPosition property. And also, you can move the selected pie slice away from the center of FlexPie by setting the SelectedItemOffset property.

' set the SelectionMode property
FlexPie1.SelectionMode = C1.Chart.ChartSelectionMode.Point

' set the SelectedItemPosition property
FlexPie1.SelectedItemPosition = C1.Chart.Position.Top

' set the SelectedItemOffset property
FlexPie1.SelectedItemOffset = 0.3
// set the SelectionMode property
flexPie1.SelectionMode = C1.Chart.ChartSelectionMode.Point;

// set the SelectedItemPosition property
flexPie1.SelectedItemPosition = C1.Chart.Position.Top;

// set the SelectedItemOffset property
flexPie1.SelectedItemOffset = 0.3D;