SeriesCollection.Add(String) Method

Definition

Adds a Series object with the given name to the end of the collection.

public:
 System::Web::UI::DataVisualization::Charting::Series ^ Add(System::String ^ name);
public System.Web.UI.DataVisualization.Charting.Series Add (string name);
override this.Add : string -> System.Web.UI.DataVisualization.Charting.Series
Public Function Add (name As String) As Series

Parameters

name
String

The name of the Series to be added.

Returns

The new Series object appended to the collection.

Remarks

Items are always added as the last item in the collection.

The name argument refers to the Name property of the object being added.

Note If you use this method to add Series objects to the SeriesCollection class, the associated DataPoint objects of the newly added Series object cannot have more than one Y-value per data point.

Applies to