Awesome Chartecharts 折线配置项内容和展示

配置项如下
      option = {
    title: {
        text: 'Awesome Chart'
    },
    xAxis: {
        data: ['1', '2', '3', '4', '5', '6', '7'],
         axisLabel:{
        color: '#666666',
        fontSize: 14,
        fontFamily: 'Arial',
        borderWidth: 1,
        backgroundColor: '#ffffff',
        width:20,
        align:'center',
        height:20,
        padding:[3,3,3,3],
        borderRadius:20,
        lineHeight: 20,
      borderColor:'#666666',
            rich: {
              
            }
        }
    },
    yAxis: {},
    series: [{
        type: 'line',
        data:[220, 182, 191, 234, 290, 330, 310]
    }]
};
    
截图如下