Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Implementing Flowchart using AngularJS and Canvas

I am trying to implement a flowchart using AngularJS and Canvas.
Instead of providing users with a UI where they can drag'n'drop UI components, I want to build a command line tool where users will be entering a command to draw a circle, which will convert command to a JSON object and render that object in canvas.

Are there any libraries which I can use to render UI components using JSON Object?

like image 681
Abhishek Avatar asked May 11 '15 08:05

Abhishek


1 Answers

Is canvas a hard requirement or could it be SVG? If so, you could try AngularJS-FlowChart (Demo / Article/Tutorial) or angular-jointjs-graph (Demo).

like image 184
Nighto Avatar answered Sep 28 '22 15:09

Nighto