我只是将它添加到一个简单的svg元素
const svg = d3.select('body')
.append('svg')
.attr('width', '960px')
.attr('height', '500px');
svg
.append('rect')
.attr({
rx : 6,
ry : 6,
x : 50,
y : 50,
width : 100,
height: 0,
class : 'selection'
});
最终的dom看起来如下
为什么没有出现任何属性?
我对d3很新。我使用的是d3 4.6.0