AODL.Document.Content.Charts.Chart.New C# (CSharp) Метод

New() публичный Метод

public New ( ) : void
Результат void
		public void New()
		{
			this.IsNewed =true;
			this.LoadBlankContent ();
			this.LoadBlankStyles ();
			this.InitStandards ();
			this.ChartLegend     = new ChartLegend(this,"ch2");
			this.ChartTitle      = new ChartTitle (this,"ch3");
			this.ChartTitle .InitTitle ();
			this.Content .Add (this.ChartTitle );
			this.ChartPlotArea   = new ChartPlotArea (this,"ch4");
			if (this.Frame==null)
			{
				this.Frame           = new Frame (this.Document ,"gr1");
				//this.CreateParentNode (null);
				this.Frame.Content .Add (this);
			}
			this.InitChart ();
		}