Series Constructor (String^, Int32)

.NET Framework (current version)
 

Initializes a new instance of the Series class with the specified name and maximum number of Y-values.

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

public:
Series(
	String^ name,
	int yValues
)

Parameters

name
Type: System::String^

The name of the Series object that will be created.

yValues
Type: System::Int32

The maximum number of Y-values allowed for the DataPoint objects that belong to this series.

Use this constructor to create and initialize a new instance of the Series class.

System_CAPS_importantImportant

This series will only be able to store DataPoint objects that do not have more Y-values than the maximum set by the yValues parameter. If you add a data point that has more Y-values than the set maximum, an exception will be thrown.

To create a Series object at runtime, the Add and Insert methods of the Series collection property can also be used.

.NET Framework
Available since 4.0
Return to top
Show: