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

ChartAxis() public method

Initializes a new instance of the chartaxis class.
public ChartAxis ( Chart chart ) : System
chart Chart The chart.
return System
		public ChartAxis(Chart chart)
		{
			this.Chart				= chart;
			this.Document			= chart.Document;
			this.NewXmlNode(null);
			this.AxesStyle = new AxesStyle (chart.Document);
			this.Chart .Styles .Add (this.AxesStyle);
			this.InitStandards();

			if (this.AxesStyle .AxesProperties.DisplayLabel==null)
			     this.AxesStyle .AxesProperties.DisplayLabel ="true";

		}

Same methods

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