I would like to implement a chord diagram with Angular2. Researching, I found that d3.js library implements that kind of diagrams, but if anybody knows other libraries to implement it those are welcome :)
I already have d3 integrated with Angular2 in two ways: one through d3-ng2-service, and another installing the typings of d3.
There are some examples here in SO, like this awesome answer, but when I try to integrate into my app some methods doesn't exists and I don't know how can achieve this. For example d3.svg.arc
is not recognized.
There are other useful links with examples of chord diagrams, like this or this
Anybody has experience with chord diagrams on Angular2 and can drive me on the good way?
Any resource is welcome, like libraries (free or paid), tutorials...
Thanks in advance!