本帖最后由 CSCWijmo 于 2017-12-12 10:48 编辑
tooltip: Tooltip = new Tooltip();
tooltip.show(this.elementRef.nativeElement, "你好");
默认气泡是显示在控件的上边,怎么设置显示在右边
看到有个 Rect 参数,我使用下面代码去测试
let rect = Rect.fromBoundingRect(this.elementRef.nativeElement.getBoundingClientRect());
rect.left = rect.left + 240;
rect.top = rect.top + 40;
this.tooltip.show(this.elementRef.nativeElement, "你好", rect);
这种方式确实可以把气泡设置在控件的右边,但是感觉还是有点不对劲,不知道有没有可以设置一个 right 属性,然后就默认都是在控件右边显示的?
|
|