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

ChartDataPoint() public method

public ChartDataPoint ( Chart chart, string styleName ) : System
chart Chart
styleName string
return System
		public ChartDataPoint(Chart chart, string styleName)
		{
			this.Chart				= chart;
			this.Document			= chart.Document;
			this.NewXmlNode(styleName);

			//this.InitStandards();

			if (styleName != null)
			{
				this.StyleName		= styleName;
				this.DataPointStyle		= new DataPointStyle(this.Document, styleName);
				this.Chart.Styles.Add(this.DataPointStyle);
			}
		}

Same methods

ChartDataPoint::ChartDataPoint ( Chart chart ) : System
ChartDataPoint::ChartDataPoint ( IDocument document, XmlNode node ) : System