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
    }]
};

猜你喜欢

转载自www.cnblogs.com/snowhite/p/10220077.html