svg.selectAll("dot") .data(data) .enter().append("circle") .attr("r", 3.5) .style("fill", function(d) { // <== Add these if (d.close <= 400) { ...
確定! 回上一頁