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

SeriesPoint(Object, Object[], Int32) Constructor

Initializes a new instance of the SeriesPoint class with the specified argument and values.

Namespace: DevExpress.XtraCharts

Assembly: DevExpress.XtraCharts.v21.2.dll

NuGet Package: DevExpress.Charts

Declaration

public SeriesPoint(
    object argument,
    object[] values,
    int id
)

Parameters

Name Type Description
argument Object

A Object value which specifies a series point argument. Note that if the argument is null (Nothing in Visual Basic) or Empty, then a ArgumentException will be thrown.

values Object[]

An array of Object values which specifies series point values for the specified argument. An individual item of these values can be accessed via the SeriesPoint.Item property. If a SeriesBase.ValueScaleType is ScaleType.DateTime then this array of DateTime values can be accessed by the SeriesPoint.DateTimeValues property.

id Int32

An integer value which specifies the ID of the point.

Remarks

This method is hidden and intended for internal use only. Normally, you don’t need to use it.

See Also