vote up 4 vote down star
1

I'm trying to draw a graph on an ASP webpage. I'm hoping an API can be helpful, but so far I have not been able to find one.

The graph contains labeled nodes and unlabeled directional edges. The ideal output would be something like this.

Anybody know of anything pre-built than can help?

flag

75% accept rate

6 Answers

vote up 3 vote down check

Definitely graphviz. The image on the wikipedia link you are pointing at was made in graphviz. From its description page the graph description file looked like this:

graph untitled {
    graph[bgcolor="transparent"];
    node [fontname="Bitstream Vera Sans", fontsize="22.00", shape=circle, style="bold,filled" fillcolor=white];
    edge [style=bold];
    1;2;3;4;5;6;
    6 -- 4 -- 5 -- 1 -- 2 -- 3 -- 4;
    2 -- 5;
}

If that code were saved into a file input.dot, the command they would have used to actually generate the graph would probably have been:

neato -Tsvg input.dot > graph.svg
link|flag
vote up 3 vote down

I am not sure about ASP interface, but you may want to check out graphviz.

/Allan

link|flag
vote up 1 vote down

You might be able to pull this off with Google's Chart API. It is very easy to get started with.

link|flag
This is not an option for this type of graph. – kennsippell Sep 16 '08 at 6:21
vote up 1 vote down

I would recommend zedgraph

link|flag
vote up 1 vote down

GraphViz does a nice job for tiny graphs, but not for huge ones. If your graph is reasonlably large, try aiSee or have a look at the alternatives on this list.

link|flag
vote up 0 vote down

You could use QuickGraph to easily model the graph programatically, then export it to GraphViz or GLEE, then render it to PNG.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.