views:

1310

answers:

5

Do you know any libraries that would handle displaying of graph structures in .NET? I'm looking for something similar to java libraries: jgraph or Netbeans Visual Library. I'd like to display objects as nodes in the graph.

+2  A: 

StructsViz (although its not free: 99.90€)

DAC
How can I download StructViz ?
alhambraeidos
+5  A: 

There are a couple of wrappers for the excellent GraphViz libraries that provide a number of difference layout options (hierarchical tree, radial, and so on).QuickGraph in particular supports the graph data structures and outputs files that the various rendering engines can use to generate the graphics.

An alternative is the Microsoft Automatic Graph Layout (MSAGL) - formerly known as GLEE - format that the MS Research folks are cooking up. There's an example of it being used in this Reflector add-in.

Dylan
A: 

NodeXL is a .Net network / graph API. available at: http://www.codeplex.com/NodeXL/

DrDee
A: 

MindFusion FlowChart .NET is solid and easy to use.

http://www.mindfusion.eu/flowchart-net.html

+2  A: 

Graph#

Palesz