Valerio
Valerio

Reputation: 105

Create Graph with Angular 5

I am trying to create a graph editor using Angular 5. My goal is to make a DAG editor using a drag/drop feature for nodes and edges, where then I can set some properties on the nodes...

do you know any library I can use to render simple graphs with Angular 5?

Up to now I have only found this lib

https://github.com/swimlane/ngx-graph

nut its documentation is really poor...

thanks!

Upvotes: 6

Views: 6957

Answers (1)

lemon
lemon

Reputation: 88

I am currently looking for similar solution as you and this one seems to be best I found so far: https://github.com/Ni55aN/d3-node-editor. There is example specifically for Angular.

There are also paid solutions, such as GoJS, which is amazing, but quite expensive: https://www.nwoods.com/products/gojs/index.html. They have also the Angular implementation.

Upvotes: 3

Related Questions