我想截断d3中超过预定义限制的文本.
我不知道怎么做.
这就是我现在拥有的:
node.append("text") .attr("dx",20) .attr("dy",".20em") .text(function(d) { if(d.rating > 25) return d.name; }));