Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Best Approach for a Vertical Tree

    Hello,

    I am creating a layout that is databound to display data inside a vertical tree. I seen the TreeGrid, Miller Columns, and multiple Columns but these are all horizontal. Is there a widget that displays the values more like:
    Code:
     
            A
            ^
       AA        AB
        ^        ^
     AA1 AA2  AB1 AB2
    Bests,

    #2
    There isn't a built-in widget like this.

    Two possible approaches:

    1. use DrawPane - makes it easy to draw diagonal lines or arrows

    2. use a ListGrid, with each row consisting of one cell that just has complex formatting logic to either draw data (node titles) or connector lines

    Comment

    Working...
    X