我们一直在使用tips
配置series
来为ExtJS 4 和 5设置交互式提示。但是对于ExtJS 6,它不再起作用了。那么使用ExtJS 6图表包显示提示的正确方法是什么?
series: [{
type: 'pie',
field: 'count',
showInLegend: true,
donut: false,
tips: {
trackMouse: true,
width: 140,
height: 40,
renderer: function(storeItem, item) {
this.update(storeItem.get('name') + ':' + storeItem.get('count'));
}
}
}]