Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

XRChart.PieSeriesPointExploded Event

Fires when a pie slice, representing a series point, is moved to or from the pie center.

Namespace: DevExpress.XtraReports.UI

Assembly: DevExpress.XtraReports.v24.2.dll

NuGet Package: DevExpress.Reporting.Core

#Declaration

public event PieSeriesPointExplodedEventHandler PieSeriesPointExploded

#Event Data

The PieSeriesPointExploded event's data class is PieSeriesPointExplodedEventArgs. The following properties provide information specific to this event:

Property Description
Dragged Indicates whether the series point (pie slice) has been dragged with a mouse.
Exploded Indicates whether the series point (pie slice) is exploded.
Point Provides access to the series point that has changed its state to or from exploded.
Series Gets a chart series to which the moved point belongs.

#Remarks

Handle this event to determine whether a mouse action caused the slice to move. To do this, check the PieSeriesPointExplodedEventArgs.Dragged argument value.

If there are several points that change their “exploded” state, then the PieSeriesPointExploded event fires for each point. This might happen for certain values of PieSeriesViewBase.ExplodeMode or PieSeriesViewBase.ExplodedPointsFilters properties.

See Also