Dewiniaeth
Dewiniaeth

Reputation: 1123

GraphSharp .Net Graph Layout Engine

I want to use the apparently fantastic GraphSharp library but the project has NO documentation.

Specifically I'm interested in using the layout engine and not interested in the WPF control. I simply want to calculate a layout (positions of the nodes) for a given graph and layout algorithm.

Does anyone have any advice, tips, links on how to use GraphSharp.

Upvotes: 8

Views: 8232

Answers (2)

Nikolai Samteladze
Nikolai Samteladze

Reputation: 7797

Graph# is not well documented but you can find something here:

  1. http://graphsharp.codeplex.com Graph# discussion page covers some common topics. Graph# tutorial page has several videos that may help you to start. Also there is an article about creating a custom graph.

  2. There is some description of the project's design here: http://sourceforge.net/apps/mediawiki/graphsharp/index.php?title=Main_Page.

Everything else, unfortunately, you have to figure out yourself by digging into the source code.

Upvotes: 0

Pat
Pat

Reputation: 16891

Here are some useful discussions from the GraphSharp website:

How do I get X and Y coordinates of a Vertex Control? (Vertex is a.k.a. Node.)

Error when overriding Template for Edge Control (example of an Edge template).

Custom Vertices?

Vertex ItemTemplate

They've been the most use to me, but I'm still trying to figure it out.

Upvotes: 4

Related Questions