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


xValue
Specifies the x value.
yValues
The y values for the DataPoint.
isEmpty
Specifies whether the DataPoint is empty.
displayInLegend
Specifies whether the DataPoint information should be displayed in the legend.
legendText

Specifies the text as string to display for the DataPoint in the legend.

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 displayInLegend As Boolean, _
   ByVal legendText As String _
)
Visual Basic (Usage)Copy Code
Dim xValue As Object
Dim yValues As DoubleArray
Dim isEmpty As Boolean
Dim displayInLegend As Boolean
Dim legendText As String
 
Dim instance As DataPoint(xValue, yValues, isEmpty, displayInLegend, legendText)
C# 
public DataPoint( 
   object xValue,
   DoubleArray yValues,
   bool isEmpty,
   bool displayInLegend,
   string legendText
)

Parameters

xValue
Specifies the x value.
yValues
The y values for the DataPoint.
isEmpty
Specifies whether the DataPoint is empty.
displayInLegend
Specifies whether the DataPoint information should be displayed in the legend.
legendText

Specifies the text as string to display for the DataPoint in the legend.

See Also