vcl-dxchartcore-667bcfbf.md
Enumerates series display modes for legend panes.
TdxChartSeriesShowInLegend = (
Diagram,
Chart,
None
);
| Name | Description |
|---|---|
Diagram |
An XY series caption or simple series points are displayed in the corresponding diagram control legend pane.
|
| Chart |
An XY series caption or simple series points are displayed in the Chart control legend pane.
|
| None |
An XY series caption or simple series points are not displayed in a legend pane.
|
You can display a legend pane in a diagram or its parent Chart control.
Note
TdxChartSeriesShowInLegend 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 TdxChartSeriesShowInLegend.Diagram (in Delphi) or TdxChartSeriesShowInLegend::Diagram (in C++Builder) to refer to the Diagram value in code.
The ShowInLegend property of XY and simple series references the TdxChartSeriesShowInLegend type.
See Also