Skip to main content
All docs
V25.1
  • 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

    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