Back to Devexpress

TdxChartSeriesShowInLegend Enum

vcl-dxchartcore-667bcfbf.md

latest1.7 KB
Original Source

TdxChartSeriesShowInLegend Enum

Enumerates series display modes for legend panes.

Declaration

delphi
TdxChartSeriesShowInLegend = (
    Diagram,
    Chart,
    None
);

Members

NameDescription
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

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.

Direct TdxChartSeriesShowInLegend Type References

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

See Also

dxChartCore Unit