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

SeriesPoint(Int64, Double[]) Constructor

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

Namespace: DevExpress.XtraCharts

Assembly: DevExpress.XtraCharts.v18.2.dll

Declaration

public SeriesPoint(
    long argument,
    params double[] values
)

Parameters

Name Type Description
argument Int64

A Int64 value which specifies the numerical argument of the series point. This value is assigned to the SeriesPoint.NumericalArgument property. Note that if the argument is null (Nothing in Visual Basic), then a ArgumentException will be thrown.

values Double[]

An array of Double values which specifies the values of the series point for the specified argument. An individual item of these values can be accessed via the SeriesPoint.Item property.

See Also