Extjs图表类别标签的工具提示

时间:2014-02-28 15:11:50

标签: extjs charts tooltip

这是Label对象

,
                                label: {
                                    rotate: {
                                        degrees: 90
                                    },
                                    renderer: function(v){
                                     var toolTip = Ext.create('Ext.tip.ToolTip', {
                                     target: this,
                                     html: v,
                                     anchor: 'left',
                                     dismissDelay: 0,
                                     showDelay: 0,
                                     autoHide: false
                                 });

                                                     toolTip.on('show', function(){

                                                         var timeout;

                                                         toolTip.getEl().on('mouseout', function(){
                                                             timeout = window.setTimeout(function(){
                                                                 toolTip.hide();
                                                             }, 500);
                                                         });

                                                         toolTip.getEl().on('mouseover', function(){
                                                             window.clearTimeout(timeout);
                                                         });

                                                         Ext.get(targetId).on('mouseout', function(){
                                                             timeout = window.setTimeout(function(){
                                                                 toolTip.hide();
                                                             }, 500);
                                                         });

                                                     });




                                     if(v.length>10)
                                         return Ext.util.Format.substr(v,0,10) +'...' ;  
                                 }
                                }

此代码并非创建工具提示。没有错误发生。是否有任何其他方法来创建类别标签工具提示。 谢谢, 阿尼什

0 个答案:

没有答案