eCharts双y轴折线图

yAxis: [
                    {
                        type: 'value',
                        axisLabel: {
                            axisLine:{
                                show: true
                            }
                        },
                        show: true
                    },
                    {
                        type: 'value',
                        axisLabel: {
                            axisLine:{
                                show: true
                            },
                            show: true,
                            //设置y轴数值为%
                            formatter: '{value} %',
                            textStyle: {
                                color: '#000'//y轴刻度数值颜色
                            }
                        }
                    }
                ],
                // 用yAxisIndex去判断对应哪个Y轴
                {
                        name: '学生已录入:',
                        type: 'line',
                        data: this.studentFaceTotal,
                        yAxisIndex: 0
                },
                {
                        name: '教师已录入:',
                        type: 'line',
                        data: this.teacherFaceTotal,
                        yAxisIndex: 1
                }

你可能感兴趣的:(eCharts)