我在 Extjs 的 MVC 中有一个视图文件,其中有一个radarChart,所以现在我想在控制器中调用两个字段,即radarChart 的 xaxis 和 yaxis。这是我的代码
Ext.define('Gamma.view.RadarChart', {
extend: 'Ext.chart.Chart',
alias : 'widget.radarChart',
id:'radarChart',
margin: '0 0 0 0',
insetPadding: 40,
flex: 1.2,
animate: true,
store: 'RadarView',
theme: 'Yellow',
axes: [{
steps: 4,
type: 'Radial',
position: 'radial',
maximum: 60
}],
series: [{
type: 'radar',
xField: 'Name',
yField: 'Data',
showInLegend: false,
showMarkers: true,
markerConfig: {
radius: 4,
size: 4,
fill: 'rgb(212, 40, 40)'
},
// listeners:{
// itemmousedown : function(obj) {
// alert(obj.storeItem.data['Name']+ ' &' + obj.storeItem.data['Data']);
// }
// },
style: {
fill: 'rgb(94, 114, 13)',
opacity: 0.5,
'stroke-width': 0.5
}
}]
});
任何人请帮忙