2016-12-15 73 views
0

我有一个D3 JS图表,它为每个圆圈绘制圆圈并且每个圆圈的半径在该特定的类中是NoOfStudents。如何改变圆的颜色回到原始颜色点击另一个圆圈的D3 Js图表

我添加了一个Click事件,它将把圆圈的颜色从“黑色”改变为“lightcoral”。

我想要的功能是,如果我点击第2圈(点击第1圈后),然后休息所有圈子应该返回到原来的“黑色”颜色。

如何实现这一目标?谢谢!

//data 
 
let data = [{ "noOfStudent": 40, "class": "Class 1" }, { "noOfStudent": 30, "class": "Class 2" }, { "noOfStudent": 20, "class": "Class 3" }]; 
 
// set the dimensions and margins of the graph 
 
var margin = { top: 20, right: 20, bottom: 30, left: 40 }, 
 
    width = 960 - margin.left - margin.right, 
 
    height = 500 - margin.top - margin.bottom; 
 

 
// set the ranges 
 
var x = d3.scalePoint().range([0, width]).padding(0.4); 
 
var y = d3.scaleLinear().range([height, 0]); 
 

 
var svg = d3.select("body").append("svg").attr("style", "outline: thin solid red;") 
 
    .attr("width", width + margin.left + margin.right) 
 
    .attr("height", height + margin.top + margin.bottom) 
 
    .append("g") 
 
    .attr("transform", 
 
    "translate(" + margin.left + "," + margin.top + ")"); 
 

 
// get and format the data 
 
data.forEach(function (d) { 
 
    d.noOfStudent = +d.noOfStudent; 
 
}); 
 

 
// Scale the range of the data in the domains 
 
x.domain(data.map(function (d) { return d.class; })); 
 
y.domain([0, d3.max(data, function (d) { return d.noOfStudent; }) * 1.2]); 
 

 
// append the rectangles for the bar chart 
 
svg.selectAll(".bar") 
 
    .data(data) 
 
    .enter().append("circle") 
 
    .attr("class", "bar") 
 
    .attr("cx", function (d) { return x(d.class); }) 
 
    .attr("cy", function (d) { return y(d.noOfStudent); }) 
 
    .attr("r", function (d) { return d.noOfStudent; }) 
 
    .text(function (d) { return d.noOfStudent; }) 
 

 
    .on("click", function (d) { 
 
     d3.select(this).attr('r', d.noOfStudent) 
 
      .style("fill", "lightcoral") 
 
    }); 
 

 
// add the x Axis 
 
svg.append("g").attr("transform", "translate(0," + height + ")").call(d3.axisBottom(x)); 
 

 
// add the y Axis 
 
svg.append("g").call(d3.axisLeft(y));

+0

点击,选择所有ci rcles,将它们着色为黑色,然后选择此圆形颜色此lightcoral – thatOneGuy

+0

每个圆圈选择中都有一个API调用。我觉得选择所有的圈子都会有问题 –

回答

1

给圈子的成员类以后选择它们:

.attr("class", "bar allCircles") //i didnt use 'bar' on purpose as you may have used it elsewhere 

独立的点击功能,正如我在评论中所提到的,颜色各界黑话,点击圈浅轻石:

circles.on("click", function (d) { 
     d3.selectAll('.allCircles').style('fill','black'); //fill all circles black 
     d3.select(this).style("fill", "lightcoral"); //then fill this circle lightcoral 
    }); 
+1

非常感谢,它按预期工作 –