答案 0 :(得分:2)
在当前版本(2.2.4)中,答案是否定为无法禁用。
要提交此内容,您可以将其记录在Qlik Community上进行审核
答案 1 :(得分:0)
我编写了一个用户脚本,将工具提示移动到屏幕的左上角。 Here是具有用户脚本的repo的链接。
以下是用户的内容:
MutationObserver = window.MutationObserver || window.WebKitMutationObserver;
var observer = new MutationObserver(function (mutations, observer) {
// fired when a mutation occurs
$(".qv-function-tip-container").css("top", "20px");
$(".qv-function-tip-container").css("left", "20px");
});
// define what element should be observed by the observer
// and what types of mutations trigger the callback
observer.observe(document, {
subtree: true,
attributes: true
});