Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

JS library for creating a mindmap like interface [closed]

Tags:

I have to create an interface similar to what http://www.madeiracloud.com provides for drawing a network architecture (for different purposes than what they are doing).

Basically users should be able to drag & drop elements to a canvas and connect them using directional arrows.

What library should I use for this? I'm looking at d3, raphael and ocanvas.

like image 707
MB. Avatar asked Apr 19 '12 16:04

MB.


1 Answers

Raphaël ( http://raphaeljs.com/ )in combination with the Dracula Graph Library( http://dracula.ameisenbar.de/ ) will get you started.

and also thejit is perfect:

Multi-Trees The JavaScript InfoVis Toolkit provides tools for creating Interactive Data Visualizations for the Web.

http://thejit.org/

Edit:

you can also take a look at Processing.js

http://processingjs.org/

Processing.js is the sister project of the popular Processing visual programming language, designed for the web. Processing.js makes your data visualizations, digital art, interactive animations, educational graphs, video games, etc. work using web standards and without any plug-ins. You write code using the Processing language, include it in your web page, and Processing.js does the rest.

like image 89
Elnaz Avatar answered Oct 06 '22 02:10

Elnaz