javascript - d3: How to add border to a circle on an if-condition? - Stack Overflow

I am adding few circles to my d3 graph as below:this.node = this.svg.append('g').attr('c

I am adding few circles to my d3 graph as below:

 this.node = this.svg.append('g')
    .attr('class', 'nodes')
  .selectAll('circle')
  .data(graph.nodes)
  .enter().append('circle')
    .attr('r', 5)
    .attr('fill', (d) => { return this.color(d.group); })
    .on('click', this.mouseclick)
    .call(d3.drag()
        .on('start', this.dragstarted)
        .on('drag', this.dragged)
        .on('end', this.dragended));

Just like d.group used above, I have d.error present in my data which an either be true or false. How can I show a red border for the same node while its being appended (or later?) if d.error === true?

I am adding few circles to my d3 graph as below:

 this.node = this.svg.append('g')
    .attr('class', 'nodes')
  .selectAll('circle')
  .data(graph.nodes)
  .enter().append('circle')
    .attr('r', 5)
    .attr('fill', (d) => { return this.color(d.group); })
    .on('click', this.mouseclick)
    .call(d3.drag()
        .on('start', this.dragstarted)
        .on('drag', this.dragged)
        .on('end', this.dragended));

Just like d.group used above, I have d.error present in my data which an either be true or false. How can I show a red border for the same node while its being appended (or later?) if d.error === true?

Share Improve this question asked Jul 4, 2018 at 8:20 UthmanUthman 9,84719 gold badges79 silver badges109 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 11

You can use a condition on this d.error and apply a transparent stroke if it's false and red otherwise:

.style("stroke", d => d.error ? "red" : "transparent")

Using undefined instead of transparent also does the trick:

.style("stroke", d => d.error ? "red" : undefined)
// which can also be written:
.style("stroke", d => { if (d.error) return  "red" })

Here is a demo:

d3.select("svg").attr("width", 500).attr("height", 500)
  .selectAll("circle")
  .data([{ x: 85, y: 80, r: 35, error: true }, { x: 265, y: 124, r: 45, error: false }])
  .enter().append("circle")
    .attr("transform", d => "translate(" + d.x + "," + d.y + ")")
    .attr("r", d => d.r)
    .style("fill", "blue")
    .style("stroke", d => d.error ? "red" : "transparent");
  
<script src='https://d3js/d3.v5.js' charset='utf-8'></script>
<svg></svg>

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743702846a4492865.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信