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