我有一个SVG元素,我想在Angular的某个位置添加matTooltip。我观察到,如果我尝试像这样添加matTooltip:
generate() {
var svgEle = document.getElementById("testSVG");
var rect = document.createElementNS('http://www.w3.org/2000/svg', 'rect');
rect.setAttribute('id', "rect");
rect.setAttribute('x', "73");
rect.setAttribute('y', "95");
rect.setAttribute('class', "st01");
rect.setAttribute('width', "407");
rect.setAttribute('height', "328");
rect.setAttribute('matTooltip', "Info about the action");
svgEle.append(rect)
}
使用html测试代码:
<div style="width:400px">
<svg version="1.1" id="testSVG" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;"
xml:space="preserve">
<style type="text/css">
.st01{fill:#F99191;}
.st11{fill:#92B1F7;}
</style>
<rect x="638.5" y="146" class="st11" width="236" height="219"
matTooltip="Info about the action"/>
</svg>
</div>
<button mat-stroked-button (click)="generate()">Generate</button>
它不起作用。
在这种情况下到底是什么问题?
答案 0 :(得分:1)
它不起作用,因为TS中的Angular是一种编译语言。
这意味着[matTooltip]
对于TS编译器可能有意义,但是对于JS来说值得。
Angular不依赖元素属性来显示工具提示。相反(如果我没记错的话),它使用动态组件渲染来提供绝对定位的丰富组件。
如果您像这样附加工具提示,则等同于不执行任何操作。
答案 1 :(得分:0)
您的行驶里程可能会有所不同,但这是我为克服此问题所做的。为页面创建一个工具提示,然后将鼠标悬停在某个对象上时重新放置它。
在您的html文件中
<div #tooltip="matTooltip" matTooltip={{tooltipMessage}}></div>
在您的.ts文件中
import {MatTooltip} from '@angular/material';
...
@ViewChild('tooltip') tooltip: MatTooltip;
tooltipMessage: string = '';
.on('mouseover', function(d: Location, event: MouseEvent){
me.tooltipMessage = "My tooltip message."
me.tooltip.disabled = false;
me.tooltip.show();
let tip = me.tooltip._overlayRef.overlayElement;
if(tip){
setTimeout(()=>{
tip.style.left = d.x+"px";
tip.style.top = y+"px";
})
}
})
.on('mouseout', function(d: Location, event: MouseEvent){
me.tooltip.hide();
})