Reputation: 1123
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
Reputation: 7797
Graph# is not well documented but you can find something here:
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.
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
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).
They've been the most use to me, but I'm still trying to figure it out.
Upvotes: 4