ActiveReports.Chart Request technical support
DataPoint Constructor(Object,DoubleArray,Boolean)
See Also 


xValue
Specifies the x value.
yValues
The y values for the DataPoint.
isEmpty
Specifies whether the DataPoint is empty.
Initializes a new instance of the DataPoint class with the parameters specified.

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal xValue As Object, _
   ByVal yValues As DoubleArray, _
   ByVal isEmpty As Boolean _
)
Visual Basic (Usage)Copy Code
Dim xValue As Object
Dim yValues As DoubleArray
Dim isEmpty As Boolean
 
Dim instance As DataPoint(xValue, yValues, isEmpty)
C# 
public DataPoint( 
   object xValue,
   DoubleArray yValues,
   bool isEmpty
)

Parameters

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

See Also