无法通过.attr方法添加类

时间:2017-02-21 00:29:06

标签: d3.js svg

我只是将它添加到一个简单的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看起来如下

enter image description here

为什么没有出现任何属性?

我对d3很新。我使用的是d3 4.6.0

0 个答案:

没有答案