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

NewXmlNode() private method

private NewXmlNode ( string styleName ) : void
styleName string
return void
		private void NewXmlNode(string styleName)
		{
			this.Node		= this.Document.CreateNode("series", "chart");

			XmlAttribute xa = this.Document.CreateAttribute("style-name", "chart");
			xa.Value		= styleName;
			this.Node.Attributes.Append(xa);
		}