www.Chart4.NET | Samples

Whether or not the node has title and text separate. If set to true, text before first newline character (\\n) will be treated as title and rest as node text. See Remarks. Default is true.

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

Syntax

C#
public bool Node_IsDataHasText { get; set; }
Visual Basic (Declaration)
Public Property Node_IsDataHasText As Boolean
Visual Basic (Usage)
Dim instance As HierarchySettings
Dim value As Boolean

value = instance.Node_IsDataHasText

instance.Node_IsDataHasText = value
Visual C++
public:
property bool Node_IsDataHasText {
	bool get ();
	void set (bool value);
}
J#
/** @property */
public boolean get_Node_IsDataHasText()
/** @property */
public  void set_Node_IsDataHasText(boolean value)
JScript
public function get Node_IsDataHasText () : boolean
public function set Node_IsDataHasText (value : boolean)
JavaScript
function get_Node_IsDataHasText();
function set_Node_IsDataHasText(value);

Field Value

System.Boolean

Remarks

Separate formatting can be applied to title and text through the properties prefixed by Text_ and Title_.
See Title_BrushList and Title_FontList, to set a different brush and font for title.

See Also