我正在我的力导向图上创建标记。在我的力导向图中,我有不同粗细或笔划的线条或链接。因此,标记被创建为不同的大小。我想要的是具有统一大小的标记。这是我的标记代码:
`svg.append('defs').append('svg:marker')
.classed("arrowhead",true)
.attr('id', 'arrowhead')
.attr('viewBox', '0 -5 40 40')
.attr('refX', "25")
.attr('markerWidth', 8)
.attr('markerHeight', 8)
.attr('orient', 'auto')
.append('svg:path')
.attr('d', 'M0,-5L10,0L0,5')
.attr('fill', 'black');`
我怎样才能有统一大小的标记?提前致谢..