I need to create an application read from the database & create a hierarchy graphs in my form, So I can access them from the form & change some properties or change the relation between the objects Like "Family Tree or Organization Structure" in C# & SQL Server...... if if any one know a 3rd party component to do that Please till me.
-
Why not use a TreeView? msdn.microsoft.com/en-us/library/…Daniel Persson– Daniel Persson2012-10-01 19:20:32 +00:00Commented Oct 1, 2012 at 19:20
-
I need to view the data as an objects in my form like upload.wikimedia.org/wikipedia/commons/e/e7/…Mohamed– Mohamed2012-10-03 09:41:26 +00:00Commented Oct 3, 2012 at 9:41
Add a comment
|
1 Answer
Holy cow! There are multiple ways to do this, but I'm not going to do your homework for you. Here's how I'd start:
- You'll need to figure out the hierarchical relationships in the database.
- Figure out how to pass that data to the view (html or whatever the platform).
- Then you'll need to write CSS that reflects the hierarchy.
If you can give the data and more info I can help further.