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

TdxChartSimpleSeriesCustomPieView.OnCanExplodeValue Event

In This Article

Allows you to display specific Pie or Doughnut slices separately from each other based on custom conditions.

#Declaration

Delphi
property OnCanExplodeValue: TdxChartCanExplodeValueEvent read; write;

#Remarks

The OnCanExplodeValue event occurs every time the Chart control identifies if a pie or doughnut series slice should be displayed separately from other slices in the same series. You can handle this event to display certain slices separately based on custom conditions when the ExplodedValueOptions.Mode property is set to TdxChartExplodedValueMode.Custom.

Set the AArgs.CanExplode property to True to display the currently processed series slice separately from other slices in the series. Refer to the TdxChartCanExplodeValueEvent procedural type description for detailed information on available options.

Note

The OnCanExplodeValue event occurs only if the ExplodedValueOptions.Mode property is set to TdxChartExplodedValueMode.Custom.

See Also