Reputation: 11334
For a project that I'm working on we need the ability for the user to create an interactive tree/hierarchical diagram. Similar to creating a mindmap but with a top-down orientation.
I've evaluated the various tools but none seem to fit the bill:
Is there ANY jQuery plugin or tool that can be used for creating tree diagrams in an interactive fashion or are we restricted to creating this layer "on top of" the rendering/visualization libraries?
Upvotes: 1
Views: 910
Reputation: 8543
I suggest trying dagre along with D3 for the visualization. It's not so much jQuery specific, it's plain old JS. The only thing is you won't get interaction built-in. For hierarchical layout with interaction you're looking at something like mxGraph, but that's a whole different price ballpark.
Upvotes: 1