Styles in component for D3.js do not show in angular 2

前端 未结 6 1844
刺人心
刺人心 2020-11-27 03:52

I am using Angular 2 and D3.js. I want to show a red rectangle.

It only works if I put styles in the style.css file. Check this plunkr

When

6条回答
  •  醉话见心
    2020-11-27 04:55

    you can use

    ::ng-deep
    .bar {
        fill: red;
    }
    

    Here you can read perfect article explaining the approach.

    And... information from the Angular documentation

提交回复
热议问题