Extjs 使用配置参数创建NumericAxis';反向';在Ext4中

Extjs 使用配置参数创建NumericAxis';反向';在Ext4中,extjs,extjs4,Extjs,Extjs4,在Ext3.3中,我们可以使用config参数“reverse”来创建NumericAxis。我想知道如何使用Ext4实现这一点 以下是代码3.3的一部分: xtype: 'linechart', store: st_rep_spkey_rank, xField: 'check_date', yAxis: new Ext.chart.NumericAxis({ reverse: true, // ### here maximum: 100,

在Ext3.3中,我们可以使用config参数“reverse”来创建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
        },