admin管理员组文章数量:1327930
I would like to have diagram similar to this one: (the most important part is that I would like to have node text displayed in several colors; it doesn't matter whether the diagram is tree or cluster)
This is a test example:
jsfiddle
I tried changing text color via CSS
, and within JavaScript
code, bit it always remains black. Why?
I would like to have diagram similar to this one: (the most important part is that I would like to have node text displayed in several colors; it doesn't matter whether the diagram is tree or cluster)
This is a test example:
jsfiddle
I tried changing text color via CSS
, and within JavaScript
code, bit it always remains black. Why?
1 Answer
Reset to default 8I found the answer:
fill: #5555ff;
in CSS for node/text solves the problem.
SVG text element does not care about color
attribute, like other HTML elements. Setting fill
is the right way.
本文标签: javascriptD3 treecluster diagramchanging node text colorStack Overflow
版权声明:本文标题:javascript - D3 treecluster diagram - changing node text color - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1742254161a2441319.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论