Is there any good library for some graph-app? I want to create nodes, add weighted edges, etc…
EDIT
I need a graph (like on the image below) not a plot.

|
Is there any good library for some graph-app? I want to create nodes, add weighted edges, etc… EDITI need a graph (like on the image below) not a plot.
|
|||||
|
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
According to the GraphViz documentation something like this should do the layout job:
Instead of using logNode: you should write some drawing code. Log output:
|
|||||
|
|
It's not super Cocoa-friedly, but Graphviz might either do a lot of what you need, or provide a good basis for your own efforts. (That is, the graphviz library can handle all the graph layout logic, and tell you where to put shapes which you then draw using your favorite graphics API. For example, this is how OmniGraffle's automatic layout feature works.) |
|||||||||
|
|
If you can restrict yourself to Mountain Lion and above, SceneKit seems to be a promising place to start. You'll have to manage the layout geometry yourself (actual positions of the nodes/edges), but you get hit testing and geometric primitives for free. Properties and textures are animatable: you can enlarge a node, darken an edge, change a number or color, all with your favorite Core Animation style calls. |
|||
|