Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的页面中有小部件,每个小部件的宽度不能超过 400 像素。数据完全由后端驱动(我对此没有任何控制权)。
问题是如果我的工具提示的长度超过一定的限制,它会隐藏数据。请在另一个论坛上查看我的消息所附的屏幕截图。
请让我知道是否有任何解决方案。
您可以使用定位器控制工具提示的显示位置,如下所示:
tooltip: { positioner: function () { return { x: 80, y: 50 }; } },
这是一个演示。然后你可以使用格式化程序在工具提示中正确显示数据,这样它就不会超出你的控制宽度。