-
18 Sep 2012 9:54 PM #1
Answered: Radar chart's tooltip
Answered: Radar chart's tooltip
How can I add tooltip for items of radar chart? I add following block of code
to chart's series definition, but it does not worked for me.Code:tips:{ trackMouse: true ,width: 400 ,autoScroll: true ,renderer: function(storeItem, item) { this.setTitle(storeItem.get('name') + ': ' + String(item.value[1] ) ); } }
-
Best Answer Posted by Anver
Sorry, guys. The problem were with
. Something with item's value access.Code:String(item.value[1] )
-
18 Sep 2012 9:58 PM #2
Sorry, guys. The problem were with
. Something with item's value access.Code:String(item.value[1] )


Reply With Quote