我有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'
});