ActiveReports Developer 7
DataPoint Constructor(Object,DoubleArray,Boolean)
See Also 
GrapeCity.ActiveReports.Chart.v7 Assembly > GrapeCity.ActiveReports.Chart Namespace > DataPoint Class > DataPoint Constructor : DataPoint Constructor(Object,DoubleArray,Boolean)

xValue
Specifies the x value.
yValues
The y values for the DataPoint.
isEmpty
Specifies whether the DataPoint is empty.

Glossary Item Box

Initializes a new instance of the DataPoint class with the parameters specified.

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal xValue As System.Object, _
   ByVal yValues As DoubleArray, _
   ByVal isEmpty As System.Boolean _
)
C# 
public DataPoint( 
   System.object xValue,
   DoubleArray yValues,
   System.bool isEmpty
)

Parameters

xValue
Specifies the x value.
yValues
The y values for the DataPoint.
isEmpty
Specifies whether the DataPoint is empty.

See Also