1
我試圖根據數據動態縮放一些形狀。這是我到目前爲止:d3縮放基本形狀
svg.selectAll(".point")
.data(data)
.enter()
.append("path")
.attr("class", "point")
.attr("d", d3.svg.symbol().type("triangle-up"))
.attr("transform", function(d) { return "translate(" + x(d.x) + "," +
y(d.y) + ")"; });
是否有另一個attr,我可以添加?我試圖使用以下但不工作:
.attr("transform", "scale(xMap)");
xMap是數據縮放到一個範圍的值。
感謝完美的作品! – ajax2000