macleojw
macleojw

Reputation: 4159

GraphViz and ASP.NET

I woud like to generate graphs using GraphViz and display them on an ASP.NET webpage.
What is the best library to use for this?

Upvotes: 5

Views: 5344

Answers (2)

chtenb
chtenb

Reputation: 16184

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.

Upvotes: 0

Mauricio Scheffer
Mauricio Scheffer

Reputation: 99730

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.

Upvotes: 4

Related Questions