tips.hide()函数。 infoVis / JIT中的潜在错误?

时间:2013-04-04 14:24:58

标签: javascript data-visualization graph-visualization infovis thejit

我有一个强制定向图,启用了“提示”。我不想显示那些隐藏的节点的提示,即“alpha”为零的节点。在onShow回调函数我试图使用tips.hide()但它没有隐藏提示。这是我的代码。

Tips: {  
  enable: true,  
  type: 'Native',  
  onShow: function(tip, node) { 
     if( node.getData('alpha') == 0 ) this.fd.tips.hide(false); 
     else tip.innerHTML = node.name;  
  }  
}

当我钻进infovis库jit.js时,我发现了一些看起来像虫子的东西。下面是hide函数,它基本上将style.display设置为'none'。

  hide: function(triggerCallback) {
    this.tip.style.display = 'none';
    triggerCallback && this.config.onHide();
  }

现在看下面的代码。

  onMouseMove: function(e, win, opt) {
    if(this.dom && this.isLabel(e, win)) {
      this.setTooltipPosition($.event.getPos(e, win));
    }
    if(!this.dom) {
     var node = opt.getNode();
     if(!node) {
       this.hide(true);
       return;
     }
     if(this.config.force || !this.node || this.node.id != node.id) { 
       this.node = node;
       this.config.onShow(this.tip, node, opt.getContains());
     }
     this.setTooltipPosition($.event.getPos(e, win));
   }
  },

  setTooltipPosition: function(pos) {
    var tip = this.tip, 
        style = tip.style, 
        cont = this.config;
    style.display = '';             //This looks like a problem
    //get window dimensions
    var win = {
       'height': document.body.clientHeight,
       'width': document.body.clientWidth
    };
    //get tooltip dimensions
    var obj = {
       'width': tip.offsetWidth,
       'height': tip.offsetHeight  
    };
    //set tooltip position
    var x = cont.offsetX, y = cont.offsetY;
    style.top = ((pos.y + y + obj.height > win.height)?  
        (pos.y - obj.height - y) : pos.y + y) + 'px';
    style.left = ((pos.x + obj.width + x > win.width)? 
        (pos.x - obj.width - x) : pos.x + x) + 'px';
  }

正如您所见,onMhow函数是从onMouseMove函数调用的。在onShow之后,调用setTooltipPosition函数将style.display设置回''(参见我在代码中的注释)。因此,即使在从onShow函数调用hide()之后,也不会隐藏提示。 当我在setTooltipPosition中注释掉该行时,它可以正常工作,即隐藏的节点隐藏了工具提示。

这是infovis中的错误还是我做错了什么。我想知道如果它不是一个bug,应该如何使用hide函数。

另外,有没有人知道隐藏工具提示的其他任何更好的方法?

1 个答案:

答案 0 :(得分:0)

我有类似的问题。解决方案是使用.css(' visibility',' visible')而不是.hide() - 因为隐藏元素以使用css样式开始。