Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TdxChartSeriesShowInLegend Enum

Enumerates series display modes for legend panes.

#Declaration

Delphi
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

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