清爽折线图

option = {
                title: {
                    left: '1%',
                    text: '考试成绩',
                    textStyle: {   //标题颜色
                        color: '#6E6E6E',
                        fontSize: '13px cursive',
                    }
                },
                tooltip: {
                    trigger: 'axis'
                },
                legend: {
                    icon: 'circle',
                    orient: 'horizontal',
                    top: '93%',
                    itemWidth: 28,
                    itemHeight: 28,
                    itemGap: 35,
                    data: ['数学', '语文', '英语'],
                    textStyle: {   //标题颜色
                        color: '#6E6E6E',
                        fontSize: '13px cursive',
                    }
                },
                color: ['#ffa414', '#CCC', '#6495ED', '#FF0000'],  //设置legend颜色
                grid: {
                    left: '3%',
                    right: '6%',
                    bottom: '10%',
                    containLabel: true
                },
                toolbox: {
                    feature: {
                        saveAsImage: {}
                    }
                },
                xAxis: {
                    type: 'category',
                    boundaryGap: false,
                    data: ['1-1', '1-2', '1-3'],
                    axisLabel: {
                        show: true,
                        textStyle: {
                            color: '#6E6E6E',
                        },
                        fontSize: '13px cursive',//字体大小
                        padding: [0, 0, 0, 10],//值离刻度线位置
                    },
                },
                yAxis: {
                    minInterval:1,
                    type: 'value',
                    axisLine: {
                        show: false
                    },
                    axisLabel: {
                        show: true,
                        textStyle: {
                            color: '#6E6E6E',
                        },
                        fontSize: '13px cursive',//字体大小
                        padding: [0, 20, 0, 0],//值离刻度线位置
                    },
                },
                series: [
                    {
                        name: '数学',
                        type: 'line',
                        symbol: 'circle',//设置实心圆
                        symbolSize: 20,   //设定实心点的大小
                        lineStyle: {  //设置折线颜色
                            normal: {
                                width: 4
                            }
                        },
                        data: [3,5,1]
                    },
                    {
                        name: '语文',
                        type: 'line',
                        symbol: 'circle',//设置实心圆
                        symbolSize: 20,   //设定实心点的大小
                        lineStyle: {  //设置折线颜色
                            normal: {
                                width: 4
                            }
                        },
                        data: [5,3,8]
                    },
                    {
                        name: '英语',
                        type: 'line',
                        symbol: 'circle',//设置实心圆
                        symbolSize: 20,   //设定实心点的大小
                        lineStyle: {  //设置折线颜色
                            normal: {
                                width: 4
                            }
                        },
                        data: [1,2,3]
                    }
                ]
            };

猜你喜欢

转载自www.cnblogs.com/kkvt/p/12370111.html