0

I am looking for a JavaScript library which can do node-level traversal of a graph.

The most similar thing I could find (to help explain what I want) is ThinkMap, which is used by visualthesaurus.

Basically starting from a single circular node (preferably a <table>) I would like to show a restricted number of nearest neighbours.

Clicking on a nearest neighbour should reframe the graph centering on the new node, and querying its JSON source for the new nearest neighbours.

Are there any open-source JavaScript libraries or frameworks with an example doing something similar?

A T
  • 13,008
  • 21
  • 97
  • 158

1 Answers1

0

Is this D3 example of any help to you?

Jacob Johnson
  • 51
  • 1
  • 3
  • I have seen similar, and they are quite nice; but don't allow you to drill down at all. Also, with no limit on number of nodes shown it would get out of hand rather immediately. – A T Apr 22 '13 at 20:58