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

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

Initializes a new instance of the ChartPlotArea class.
public ChartPlotArea ( Chart chart, string styleName ) : System
chart Chart
styleName string The style name.
Результат System
		public ChartPlotArea(Chart chart, string styleName)
		{
			this.Chart				= chart;
			this.Document			= chart.Document;
			this.NewXmlNode(styleName);

			this.InitStandards();

			if (styleName != null)
			{
				this.StyleName		= styleName;			
				this.PlotAreaStyle = new PlotAreaStyle (chart.Document,styleName);
				chart.Styles .Add (this.PlotAreaStyle );
				
			}
			this.InitPlotArea ();

			chart.Content .Add (this);
		}

Same methods

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