我刚开始玩 d3,想知道如何在单击元素时更改元素的颜色。
这个小提琴改变了点击它的圆圈的颜色,但是我想在再次点击后让颜色恢复为白色。
当前代码:
var sampleSVG = d3.select("#viz")
.append("svg")
.attr("width", 100)
.attr("height", 100);
sampleSVG.append("circle")
.style("stroke", "gray")
.style("fill", "white")
.attr("r", 40)
.attr("cx", 50)
.attr("cy", 50)
.on("click", function(){d3.select(this).style("fill", "magenta");});