本文介绍了如何防止 SVG 标记(箭头)继承路径的笔画宽度?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有不同边缘厚度的箭头,但是我希望箭头(svg 标记)具有相同的大小,即不根据路径的笔划宽度调整大小.我能做什么?
I have arrows with different edge thickness however I want the arrowhead (svg marker) to have the same size, i.e., to not be resized according to the path's stroke width. What can I do?
svg.append("svg:defs").selectAll("marker")
.data(["suit", "licensing", "resolved"])
.enter().append("svg:marker")
.attr("id", String)
.attr("viewBox", "0 -5 10 10")
.attr("refX", 15)
.attr("refY", -1.5)
.attr("markerWidth", 6)
.attr("markerHeight", 6)
.attr("orient", "auto")
.style("stroke-width", 1)
.append("svg:path")
.attr("d", "M0,-5L10,0L0,5");
var path = svg.append("svg:g").selectAll("path")
.data(force.links())
.enter().append("svg:path")
.attr("class", function(d) { return "aglink " + "suit"; })
.attr("marker-end", function(d) { return "url(#" + "suit" + ")"; })
.style("stroke-width", function(d) { if (d.total != 0) {
var min = 2;
var max = 16;
var val = Math.round((max-min)*(d.count/d.total))+min;
return val ;
} });
推荐答案
参见 http://www.w3.org/TR/SVG11/painting.html#MarkerUnitsAttribute.
您似乎想要的是markerUnits="userSpaceOnUse"
.
这篇关于如何防止 SVG 标记(箭头)继承路径的笔画宽度?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!