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

TdxChartSimpleSeriesCustomPieView.OnCanExplodeValue Event

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

Declaration

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