SeriesCollection.Add(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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.