Do you know any Javascript libraries which can present graph visually in a web page?
Clarification: by graphs I mean something like workflow trees or decision trees. Sorry for not being clear.
Do you know any Javascript libraries which can present graph visually in a web page?
Clarification: by graphs I mean something like workflow trees or decision trees. Sorry for not being clear.
We used YUI in our last project. It's free and has a lot of neat features, check it out!
EDIT: Charts is the component that allows statistical type graphs, scatter plots and other charting stuff. I didn't realize you were looking for a flowchart / hierarchy based graph.
SO uses flot, which I think is pretty awesome, and am looking to use in an upcoming company project
edit: Missed the "hierarchical" part. Would still recommend flot for linear though
I made a proof-of-concept box and connector program using Prototype years ago. It's kind of crappy, and I never finished it, but it's proof it can be done. You're welcome to it.
I used the following library a while back and it implements walker's algorithm nicely. It might be a bit dated though.
I've been doing some research, looking for a JS component that would handle the live creation of flow charts / decision trees, mxGraph looks pretty handy: http://www.jgraph.com/mxgraph.html
Disclaimer: I have no relationship at all with the vendor, other than having searched the net for something suitable.