在动态创建的HTML <rect>元素内添加文本-Angular 7

时间:2019-06-03 11:54:27

标签: html angular

我有HTML rect元素,该元素是根据TS文件动态创建的。我想在形状内添加文本,我该如何对其进行点划线?

当前代码:

 const toolTipNode = this.createSvgElem('rect', {
                'x': elementPositionX,
                'y': elementPositionY,
                'width': '300',
                'height': '100',
                'class': 'click-tooltip'
            });
            this.renderer.appendChild(this.layoutSvg, toolTipNode); 

[编辑]

假设我以相同的方式创建文本元素,如何在其中添加文本?​​

  const text = this.createSvgElem('text', {
                'x': elementPositionX,
                'y': elementPositionY,
                'width': '300',
                'height': '100',
                'class': 'click-tooltip'
            });

0 个答案:

没有答案