DevExtreme dxGrid 的工具提示在 Microsoft Edge 浏览器中表现不一致

DevExtreme dxGrid's tooltip not behaving consistent in Microsoft Edge browser

我有一个 dxGrid which renders like this in Chrome:

Edge 中看到的相同网格不显示工具提示:

这是一个错误吗?如果是,有什么方法可以强制在 Edge 上显示工具提示吗?

没有错误。它工作正常。如果您真的对强制显示一种工具提示感兴趣,请使用 cellTemplate

cellTemplate: function(container, options) {
            container.attr("title", "Your tooltip data goes here");
          }