category 轴的 max 影响了 extent

描述:当前是关于Echarts图表中的 柱状图 示例。
 
             option = {
     legend: {},
     tooltip: {},
     xAxis: {
         type: 'category',
         data: ['a', 'b', 'c', 'd'],
         max: 2
     },
     yAxis: {},
     series: [{
             type: 'bar',
             label: {
                 show: true,
             },
             data: [10, 20, 30, 1000]
         }
     ]
 }