AODL.Document.Content.Charts.ChartSeries.ChartSeries C# (CSharp) Method

ChartSeries() public method

Initializes a new instance of the ChartPlotArea class. This will create an empty cell that use the default cell style
public ChartSeries ( Chart chart ) : System
chart Chart
return System
		public ChartSeries(Chart chart)
		{
			this.Chart				= chart;
			this.Document			= chart.Document;
			this.DataPointCollection =new DataPointCollection ();	
			this.NewXmlNode(null);
			this.SeriesStyle =new SeriesStyle (this.Document);
			this.Chart .Styles .Add (SeriesStyle);
		
			this.InitStandards();
		}

Same methods

ChartSeries::ChartSeries ( Chart chart, string styleName ) : System
ChartSeries::ChartSeries ( IDocument document, XmlNode node ) : System