echarts 修改y轴name的样式

option = {
    xAxis: {
        type: 'category',
        data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'],
        name:'分',
        nameLocation:'middle',
        nameTextStyle:{
            color:"green", 
            fontSize:16,  
            padding:10
        }
    },
    yAxis: {
        type: 'value'
    },
    series: [{
        data: [820, 932, 901, 934, 1290, 1330, 1320],
        type: 'line',
        smooth: true
    }]
};

posted @ 2019-01-04 15:24  雪莉06  阅读(14662)  评论(0编辑  收藏  举报