|
Group: Forum Members
Posts: 13,
Visits: 1
|
I need the diagram to bound to my custom tree which is actually composed of nodes, and for each node, there is a list of nodes:
class MyNode { MyNode parent; List childrenList; int ID; ///Other data
}
How can it be done? I saw in your examples how to bind the diagram to .mdb file using NTreeDataSourceImporter, but i could not use it with my data structure. I also tried manually creating shapes and setting ActiveLayer.AddChild, but I don't want to handle the shapes coordinates my self, I have a feeling I miss somethig here.
|