2

我有一个带有工具提示的图表。我想要的是当我将鼠标移到某些数据上时,工具提示应该隐藏,如果我将它移到其他数据上,它应该再次显示。我的示例代码是:

            tips = {
        trackMouse : true,
        width : 120,
        height : 26,
        renderer : function(storeItem, item){
            if(item.yField == 'temp'){
            this.hide();    
            } else{
            this.setTitle(storeItem.get(xFld)+':'+item.value[1]);
            }
        };

我试过了,hide();但没有任何效果。谁能给我正确的解决方案。谢谢destroy();disable();visibility();

4

2 回答 2

2

处理工具提示的beforeShow事件。true如果您希望显示工具提示,则返回,false否则。

beforeShow: function(item) {
    return item.yField !== 'temp';
}
于 2013-01-18T21:19:03.870 回答
0

处理 ToolTip 的 beforeShow 事件 如果要显示 ToolTip,则返回 true,否则返回 false。它对我有用,它节省了我的时间。谢谢凯文

于 2016-08-11T14:26:52.250 回答