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

SeriesPoint.Argument Property

Gets the point’s argument value.

Namespace: DevExpress.XtraCharts

Assembly: DevExpress.XtraCharts.v18.2.dll

Declaration

[XtraSerializableProperty(XtraSerializationVisibility.Hidden)]
public string Argument { get; set; }

Property Value

Type Description
String

A String value that specifies the data point’s argument.

Remarks

Each data point is defined by the values of two coordinates - X and Y - when speaking about the most series types.

The X coordinate value of a point represents the point’s argument and is specified by the Argument property.

As for a point’s Y coordinate, it can be defined by one or more Y values which are stored in an array available via the SeriesPoint.Values property.

Note

Note that as distinct from the Y axis which always becomes a numerical axis used to measure point data values, the X axis which indicates point arguments can measure different types of data. You can control scale types of point arguments using the SeriesBase.ScaleType property.

The following code snippets (auto-collected from DevExpress Examples) contain references to the Argument property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also