获取 echarts 中 tooltip 的 position: function (point, params, dom, rect, size) {} 在 dom 的 __textCotentBlock
时间: 2024-03-10 20:44:00 浏览: 182
tooltip_ec.zip易语言项目例子源码下载
好的,我理解了你的问题。你想获取 ECharts 中 tooltip 的位置信息,特别是 position 函数中的参数。position 函数会返回 tooltip 的位置,其中包括 point、params、dom、rect 和 size 等参数。
其中,dom 参数表示 tooltip 的 DOM 元素,而 __textContentBlock 则是 tooltip 中文本内容的 DOM 元素。如果你想获取该元素,可以使用以下代码:
```
var textContentBlock = dom.querySelector(".ec-tooltip-content");
```
然后,你就可以访问 textContentBlock 对象,获取它的位置、大小等信息。
阅读全文