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

TdxChartSeriesShowInLegend Enum

Enumerates series display modes for legend panes.

Declaration

TdxChartSeriesShowInLegend = (
    Diagram,
    Chart,
    None
);

Members

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.

Remarks

The ShowInLegend property of XY and simple series references the TdxChartSeriesShowInLegend type.

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.

See Also