const text = svg.selectAll("text") .data(textTest) .enter() .append("text") .text(function(d) { return d; }) .attr("x", function(d, ...
確定! 回上一頁