wind
wind

Reputation: 11

C# node graph api to use

I need display a node graph in c# and find the short possible path(figure 10 of http://msdn.microsoft.com/en-us/library/aa289152(VS.71).aspx). What API can i use to draw out all the node and link? Anyone can advise?

Upvotes: 1

Views: 4866

Answers (2)

Mr. Wobbet
Mr. Wobbet

Reputation: 65

Note - if you directly follow the link in Will's answer you get to the correct website. If you ask Google about QuickGraph the first link is to the CodeProject site which is deprecated. Make sure you go to the CodePlex site (Will links directly to it).

Upvotes: 0

Will Vousden
Will Vousden

Reputation: 33348

If you're using WPF, then Graph# sounds like an ideal solution for graph visualization. As for finding the shortest path between two nodes, you'll probably want to use Dijkstra's algorithm for this, which is implemented by QuickGraph (which itself is used by Graph#).

Upvotes: 5

Related Questions