6

I am looking for JavaScript library that can perform the following tasks:

  1. Dynamically generate tree (graph-node) (hierarchy structure of data)
  2. Can connect nodes together
  3. Zoom option for graph area
  4. labels for each node

Basically, like familyecho.com? Where can I find a library that has the same functionality? If any of you know any library that can perform all these task, then please do reply me.

Teun Zengerink
  • 4,277
  • 5
  • 30
  • 32
user1476552
  • 107
  • 1
  • 1
  • 11

1 Answers1

5

You can try infovis: https://philogb.github.io/jit/

Tree example: https://philogb.github.io/jit/static/v20/Jit/Examples/Spacetree/example1.html

davidbuzatto
  • 9,207
  • 1
  • 43
  • 50
  • can I connect two nodes in the same row? – user1476552 Jul 30 '12 at 03:21
  • I don't know. You need to explore the API docs and see the examples. Trees don't have nodes of the same level connected. The only connection allowed in trees is parent to child. The example that you showed connect the children, but it is just to show that they are siblings. – davidbuzatto Jul 30 '12 at 03:27
  • just what I was looking for! – 72GM Jun 24 '14 at 10:25