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

NewXmlNode() public method

public NewXmlNode ( string styleName ) : void
styleName string
return void
		public void NewXmlNode(string styleName)
		{
			this.Node		= this.Document.CreateNode("data-point", "chart");

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

		}