www.Chart4.NET | Samples

XML content that contains data items (nodes) together with text, title, tooltip, imageindex etc. Each line of text (the first one being the node-title) should be separated by \n in the tree-node's text property. See LoadFromXmlFile() for the desired XML format and remarks.

Namespace:  UnifoChart.Hierarchy
Assembly:  UnifoChart.Hierarchy (in UnifoChart.Hierarchy.dll) Version: 2.6.0.0 (2.6)

Syntax

C#
public string hpDataXml { get; set; }
Visual Basic (Declaration)
Public Property hpDataXml As String
Visual Basic (Usage)
Dim instance As HierarchyWeb
Dim value As String

value = instance.hpDataXml

instance.hpDataXml = value
Visual C++
public:
property String^ hpDataXml {
	String^ get ();
	void set (String^ value);
}
J#
/** @property */
public String get_hpDataXml()
/** @property */
public  void set_hpDataXml(String value)
JScript
public function get hpDataXml () : String
public function set hpDataXml (value : String)
JavaScript
function get_hpDataXml();
function set_hpDataXml(value);

Field Value

System.String

Remarks

If you set Name property for the tree nodes, ensure that it is unique among tree nodes.
See LoadFromXmlFile() for the desired XML format and remarks.

See Also