我需要用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?