dagrejs / dagre-d3

A D3-based renderer for Dagre
MIT License
2.83k stars 588 forks source link

Set node text color #346

Closed Anton-4 closed 5 years ago

Anton-4 commented 5 years ago

First of all, thank you for this useful open source project! I have a very simple question: how do I change the color of text inside a node?

My css is ignored somehow even though firefox inspector shows that it is applied. image

git-ashish commented 5 years ago

@Anton-4 CSS property color doesn't work with text elements. Use fill or stroke based on youre requirement. See this.

Anton-4 commented 5 years ago

Ah yes obviously, thanks for the quick response!