Skip to main content
A newer version of this page is available. .

PieSeriesViewBaseModel.ExplodeMode Property

Gets or sets the value of the PieSeriesViewBase.ExplodeMode within the model.

Namespace: DevExpress.XtraCharts.Designer

Assembly: DevExpress.XtraCharts.v18.2.Wizard.dll

Declaration

public PieExplodeMode ExplodeMode { get; set; }

Property Value

Type Description
PieExplodeMode

The condition selecting which pie slices should be represented as spread apart.

Available values:

Name Description
None

No pie slices are exploded.

All

All pie slices are exploded.

MinValue

A pie slice for the series point with the minimum value (represented as the first item in a series point’s SeriesPoint.Values collection) is exploded. If there are several pie slices with the same minimum value, all of them are exploded.

MaxValue

A pie slice for the series point with the maximum value (represented as the first item in a series point’s SeriesPoint.Values collection) is exploded. If there are several pie slices with the same maximum value, all of them are exploded.

UsePoints

Pie slices to be exploded are contained in the collection of series points returned by the PieSeriesViewBase.ExplodedPoints property.

UseFilters

Pie slices to be exploded are specified via the collection of filters returned by the PieSeriesViewBase.ExplodedPointsFilters property.

Others

A pie slice showing the Others category is exploded. Note that this category is displayed if the TopNOptions.Enabled and the TopNOptions.ShowOthers properties are set to true.

See Also