Version

Configuring Node Connectors Visibility (xamDataTree)

The node connectors feature of the xamDataTree™ control displays lines that connect each node in the tree. The node connectors demonstrate the relationship between each of the nodes. For example, as xamDataTree’s nodes are expanded, at a glance you can see each of the parent nodes in the xamDataTree control as they are connected with the same line.

By default, node connectors are disabled. You can enable node connectors by setting the xamDataTree control’s NodeLineVisibility property to Visible as demonstrated in the following code snippet.

In XAML:

<ig:XamDataTree x:Name="MyTree" NodeLineVisibility="Visible">
<!-- TODO: Add xamDataTree Items -->
</ig:XamDataTree>

In Visual Basic:

MyTree.NodeLineVisibility = Visibility.Visible

In C#:

MyTree.NodeLineVisibility = Visibility.Visible;
NodeConnectors 01.png

Related Topics