Skip to main content

SeriesPoint(Object, Object[]) Constructor

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

Namespace: DevExpress.XtraCharts

Assembly: DevExpress.XtraCharts.v23.2.dll

NuGet Package: DevExpress.Charts

Declaration

public SeriesPoint(
    object argument,
    params object[] values
)

Parameters

Name Type Description
argument Object

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

values Object[]

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