Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Javascript Hierarchy/Tree creator

Does anyone know of a javascript or css hierarchy plugin that will accomplish the following:

Root
|  |
|  |
M1  M2
|  |
\  /
  E

One that will basically do this, start with a root, branch off to two or more nodes, and the possibility that the nodes can meet on a child element below.

Thanks

like image 613
Him_Jalpert Avatar asked Feb 14 '13 17:02

Him_Jalpert


1 Answers

You may just need to reverse this.. CSS3 Family Tree

Otherwise you can use Canvas for drawing your required tree structure

Or you can use jsPlumb Library. See some samples here

Also checkout JavaScript InfoVis Toolkit and GoJS libraries.

Also checkout D3 library. Demo1, Demo2, Demo3

like image 149
Sen Jacob Avatar answered Sep 19 '22 18:09

Sen Jacob