使用Ext3.3,我们可以使用config param'verse'来创建NumericAxis。我想知道如何使用Ext4。
以下是3.3代码的一部分:
xtype: 'linechart',
store: st_rep_spkey_rank,
xField: 'check_date',
yAxis: new Ext.chart.NumericAxis({
reverse: true, // ### here
maximum: 100,
minimum: 1,
majorUnit: 20,
minorUnit: 10,
displayName: 'Rank'
}),
series: [{
type: 'line',
displayName: 'keyword1',
yField: 'rankG',
style: {
color:0x9999FF
},