DataPoint Constructor (Double, array<Double>^)

.NET Framework (current version)
 

Initializes a new instance of the DataPoint class with the specified X-value and an array of Y-values.

Namespace:   System.Windows.Forms.DataVisualization.Charting
Assembly:  System.Windows.Forms.DataVisualization (in System.Windows.Forms.DataVisualization.dll)

public:
DataPoint(
	double xValue,
	array<double>^ yValues
)

Parameters

xValue
Type: System::Double

The X-value of the data point.

yValues
Type: array<System::Double>^

An array of Y-values of the data point.

This constructor can be used to create and initialize a new instance of the DataPoint class.

However, it is highly recommended that you instead add data points at run time, using the Points collection property.

.NET Framework
Available since 4.0
Return to top
Show: