当我计算textpath元素的文本长度时,当我对"字母间距"设置不同的样式时,值不会改变。
有没有办法处理由于额外间距而导致的额外长度?
目前,我计算文本长度来隐藏双层分区图上的一些标签:
textsElements
.attr("dy", function(d) {
var offset = (radius / strokeWidth)/2;
var rotation = getRotationDeg(d)
return rotation > 0 && rotation < 180 ? -offset : offset;
})
.append("textPath")
.attr("startOffset", "50%")
.attr("class","labels-text")
.style("text-anchor", "middle")
.attr("xlink:href", function (d) { return '#' + createTextPathId(d); })
.text(function (d) { return d.name; });
// Hide labels that are to long
textsElements.each(function(d){
var el = d3.select(this);
d.labelToLong= false;
if(( d.hiddenArcLength - this.getComputedTextLength()) < 5) {
el.style("opacity",0);
d.labelToLong = true;
}
});
textpath.labels-text {letter-spacing: 1px;}
实际上,getComputedTextLength()
忽略了字母空间。
您可以尝试getBBox()
:
textsElements.each(function(d){
var el = d3.select(this);
d.labelToLong= false;
if(( d.hiddenArcLength - this.getBBox().width) < 5) {
el.style("opacity",0);
d.labelToLong = true;
}
});
不幸的是,这对您没有帮助,因为您处理的是倾斜路径,而不是水平文本。因此,您可以尝试根据紧排调整getComputedTextLength
的给定值:
textsElements.each(function(d){
var el = d3.select(this);
var tweak = 1.2;//you can make this value >1 or <1, according to the kerning
d.labelToLong= false;
if(( d.hiddenArcLength - this.getComputedTextLength()*tweak) < 5) {
el.style("opacity",0);
d.labelToLong = true;
}
});