Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Javascript Library for hierarchical flowchart [closed]

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.

like image 291
Gonçalo Veiga Avatar asked Dec 12 '08 17:12

Gonçalo Veiga


3 Answers

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.

like image 65
David Henderson Avatar answered Nov 03 '22 02:11

David Henderson


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.

like image 38
Diodeus - James MacFarlane Avatar answered Nov 03 '22 00:11

Diodeus - James MacFarlane


Dojo Charting:

  • tests (warning: this test server set up for debugging)
  • my articles on SitePen's blog (disclamer: I am the principle developer of this package).

Stand-alone Dojo charting widgets with links to the same test server:

  • analog gauge
  • bar gauge (variation of the bullet chart).

EDIT: responding to the latest edit of the question: Dojo Charting does not support flow charts directly. There are several projects that did just that using Dojo GFX, but nobody contributed it back — try to Google for it.

like image 1
Eugene Lazutkin Avatar answered Nov 03 '22 01:11

Eugene Lazutkin