test

描述:当前是关于Echarts图表中的 示例。
 
            option = {
    legend:{  
        right:30,
        top:0,
    },
    grid:{
        left:'3%',
        right:'3%',
        top:'7%',
        bottom:'5%',
        containLabel:true
    },
    xAxis: {
        data: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu'],
        axisTick:{
            show:false
        }
    },
    yAxis: [
        {
            type:'value',
            axisLine:{
                show:true
            }
        },
        {
            type:'value',
            max:100,
            min:0,
            splitLine:{
                show:false
            },
            axisLine:{
                show:true
            },
            axisLabel:{
                formatter:value=>{
                    console.log(value);
                    return `${value}%`
                }
            }
        }
    ],
    series: [{
        name:'实际录取数',
        type: 'bar',
        data:[5200,4500,3200,4800,5100]
    },{
        name: '报到率',
        type: 'line',
        data:[20,40,60,80,100],
        yAxisIndex:1,
        symbolSize:10
    }]
};