TdxChartExplodedValueMode Enum
Declaration
TdxChartExplodedValueMode = (
None,
All,
Min,
Max,
Custom
);
Members
Name | Description | Example (Doughnut) | Example (Pie) |
---|---|---|---|
None
|
Default. A Pie or Doughnut series is not exploded in this mode; the ExplodedValueOptions.Distance property value is ignored. |
||
All
|
All slices of a Pie or Doughnut View are separated from each other. The View’s ExplodedValueOptions.Distance property specifies offset (as a percentage) of slices from the pie or doughnut center. |
||
Min
|
Only the Pie or Doughnut slice that corresponds to the minimum series value is displayed separately from its series. The View’s ExplodedValueOptions property specifies offset of the smallest slice from the pie or doughnut center. |
||
Max
|
Only the Pie or Doughnut slice that corresponds to the maximum series value is displayed separately from its series. The View’s ExplodedValueOptions.Distance property specifies offset (as a percentage) of the maximum slice from the pie or doughnut center. |
||
Custom
|
Pie or Doughnut slices do not separate automatically from each other but the series View raises the OnCanExplodeValue event every time the Chart control determines how to draw a Pie or Doughnut series slice. In this mode, you can handle the OnCanExplodeValue event of the target series View to determine what slices should be displayed separately based on custom conditions. |
Remarks
Different slice display modes allow you to separate all or certain pie or doughnut slices from their neighbors.
Note
TdxChartExplodedValueMode
is a scoped enumeration type. Use the type name together with a scope resolution token (.
in Delphi or ::
in C++Builder) followed by an enumeration value to refer to this value. For example, use TdxChartExplodedValueMode.All
(in Delphi) or TdxChartExplodedValueMode::All
(in C++Builder) to refer to the All
value in code.
Direct TdxChartExplodedValueMode Type Reference
The ExplodedValueOptions.Mode property of Pie and Doughnut Views references the TdxChartExplodedValueMode
type.