i have a database that lists a bunch of applications and their dependencies. Some dependencies also have other dependencies. I am trying to figure out a web based way to visualize this on a web page so you can see the whole list of recursive dependencies throughout the data. i am using asp.net mvc. any suggestions?
i have a database that lists a bunch of applications and their dependencies. Some
Share
You could use QuickGraph to model the dependency graph, then export it as GraphViz or GLEE, then render it to PNG and show that image on your webpage.