在Angular中测量svg元素的尺寸

时间:2018-08-06 08:24:59

标签: angular svg

我正在尝试使用SVG在Angular中创建类似量规的组件以绘制形状。我想将文本居中放置在一个矩形内。文本将根据量规的值而变化,因此,我想调整字体大小以使该值适合矩形。或者,我可以调整数字格式(例如,如果字符串太长,请使用科学计数法)以适合矩形。

我遇到的问题是,当我尝试测量svg元素的尺寸(矩形和文本)时,本机元素的getBoundingClientRect()返回零。我正在通过@ViewChild() : ElementRef获取本机元素。有更好的方法吗?

我整理了一个堆栈闪电标尺,它在尝试获取文本尺寸时显示了该问题。它与我的本地副本的不同之处在于矩形确实返回了尺寸。我正在使用Angular 5.2.11,也许差异是由于版本不同? 编辑: 我已经更新了stackblitz:https://stackblitz.com/edit/angular-oz72py

我在下面添加了app.component.ts及其html模板

import { Component,OnInit, ViewChild,ElementRef } from '@angular/core';
@Component({
  selector: 'my-app',
  templateUrl: './app.component.html',
  styleUrls: [ './app.component.css' ]
})
export class AppComponent  {
  name = 'Angular';
  @ViewChild('containerRect') containerRect : ElementRef;
  @ViewChild('valueText') valueText : ElementRef;
  valueStr="2512323.0";
  ngOnInit()
    {
    console.log('container bounds:',
                this.containerRect.nativeElement.getBoundingClientRect().width);
    console.log('text bounds:',
                this.valueText.nativeElement.getBoundingClientRect().width)
    }
}

app.component.html:

<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120">
  <svg:rect x="0" y="0" width="100%" height="100%" fill="00AA00"/>
  <svg:circle cx="60" cy="60" r="60" fill="#C3002F"/>
  <svg:path d="M 60 110
               A 50 50 0 1 1 110 60
               L 100 60
               A 40 40 1 1 0 60 100
               Z" 
               fill="#DDDDDD" fill-opacity="1"/>
  <svg:path d="M 60 110
               A 50 50 0 0 1 10 60
               L 20 60
               A 40 40 1 0 0 60 100 
               Z" 
               fill="#888888" fill-opacity="1"/>
  <svg:rect #containerRect x="29.090373558749814" 
                           y="51.717790556719336"
                           width="61.81925288250037"
                           height="16.564418886561327"
                           fill="#00AA00"/>
  <svg:text #valueText font-size="14px" 
                       x="50%" text-anchor="middle"  dy="0.95em"
                       y="51.717790556719336">{{valueStr}}</svg:text>
</svg>

1 个答案:

答案 0 :(得分:1)

运行ngOnInit()时DOM尚未准备就绪。

相反,请将您的代码放入ngAfterViewInit()

ngAfterViewInit()
{
  console.log('container boundsx:',
              this.containerRect.nativeElement.getBBox().width);
  console.log('text bounds:',
              this.valueText.nativeElement.getBBox().width)
}

我还建议您使用getBBox()而不是getBoundingClientRect()getBBox()方法以SVG单位返回值。因此,它应该更加准确,不会受到任何缩放的影响,并且与SVG文件中的大小完全匹配。