在d3中用标记创建带有箭头的线(只是头部轮廓)?

时间:2018-06-19 14:31:14

标签: d3.js

我需要用d3创建一行并在末尾添加一个箭头 但this种箭头。 我发现了很多箭头已满的示例。但它不是我想要的。有办法吗?

这就是我所拥有的

    const defs = d3.select(this.faux).append('defs');
defs.append('marker')
  .attr('id', 'arrow')
  .attr('marker-width', 10)
  .attr('marker-height', 10)
  .attr('orient', 'auto')
  .append('path'). //What here?

0 个答案:

没有答案