(C# / ASP.NET) Plotting dependency graph via dataset

swat73david

New Member
Is there any open source / free libraries out there that allows you to generate static dependency graphs in C# / ASP.NET using a dataset? When I mean static, I mean it doesn't have to be draggable or have the functionality to move the nodes around.What I mean by dependency graph is something like (just a image I found off google : http://www.tarind.com/depgraph_small.jpg). The functionality I'm looking for is to be able to plot such a graph, assuming I have a simple dataset made up of just two element tuples e.g. [A,B], [A,C], [A,D], [B,E], [C,D]. The graph would have a node A linked to node B, C, D, and node B linked to E ... etc.I would attempt to write it myself but I don't even have any clue where to start! My experience with C# / ASP.NET has been limited to just regular HTML / tables / grids / third party charting software and regular AJAX / postback stuff (nothing drawing related).
 
Back
Top