Reputation: 230
I'm working on dagre-d3 in angular. And got stuck in the middle.
Problems:
https://codesandbox.io/s/angular-graph-kq2nb
I have gone through some of the posts related to this but not able to find what I'm missing.
Any help is appreciated.
Upvotes: 0
Views: 585
Reputation: 146
Maybe you already found the answer. You just need to put ":host /deep/" before css attribute.
:host /deep/.edgePath path {
stroke: #333;
fill: #333;
stroke-width: 1.5px;
}
Upvotes: 1