Hello,
I want to add some multiple "e-connector" in the ejs-diagram. We want to achieve by using *ngFor like below,
<e-connectors *ngFor="let coordinates of finalCordinates">
<e-connector [sourcePoint]='{"x":coordinates.sourcePointx,"y":coordinates.sourcePointy}'
[targetPoint]='{"x":coordinates.targetPointx,"y":coordinates.targetPointy}'
[style]='{ "strokeWidth": 3,"strokeColor": "#fff","fill": "transparent","strokeDashArray": "","opacity": 1,"gradient": {"type": "None"}}'
[segments]='segments4' [targetDecorator]='decorator'>
</e-connector>
</e-connectors
Currently we are not getting anything? Can you please suggest me what should I do?
Thank You.