我有一个条形柱形图。我希望当我单击该列时,它将显示它的值并调用另一个函数,我将通过 ajax 调用数据库。
当我单击该列时,会显示值但第二部分,即第二个函数调用未完成..这是我的控制器代码...
initializedEvents: false,
init: function() {
this.control({
'#barColumnChart': {
afterlayout: this.afterChartLayout
}
});
},
afterChartLayout: function(){
if(this.initializedEvents==true) return;
this.initializedEvents=true;
Ext.getCmp('barColumnChart').series.items[0].on('itemmousedown',function(obj){
var barData=obj.storeItem.data['source']+ ' &' + obj.storeItem.data['count'];
// I want to call the dataBaseCall function here
});
},
dataBaseCall: function(barData){
alert(barData);
}