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


xValue
Specifies the x value.
yValues
The y values for the DataPoint.
isEmpty
Specifies whether the DataPoint is empty.
properties
Specifies the custom properties for the DataPoint.
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, _
   ByVal properties As CustomProperties _
)
Visual Basic (Usage)Copy Code
Dim xValue As Object
Dim yValues As DoubleArray
Dim isEmpty As Boolean
Dim properties As CustomProperties
 
Dim instance As DataPoint(xValue, yValues, isEmpty, properties)
C# 
public DataPoint( 
   object xValue,
   DoubleArray yValues,
   bool isEmpty,
   CustomProperties properties
)

Parameters

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

See Also