I woud like to genera开发者_运维问答te graphs using GraphViz and display them on an ASP.NET webpage.
What is the best library to use for this?That would be QuickGraph.
QuickGraph makes it very easy to model graphs, it has good documentation and it's dead easy to export the graph to GraphViz.
Try the following newer object-oriented .NET wrapper: https://github.com/Rubjerg/Graphviz.NetWrapper
It doesn't generate dot files or anything, but performs direct function calls to the underlying DLL, allowing you to do virtually anything you could do when you would have been writing C++ code. I use it myself to render interactive graphs on an ASP.NET webpage.
精彩评论