码迷,mamicode.com
首页 > 其他好文 > 详细

清爽折线图

时间:2020-02-27 09:12:11      阅读:79      评论:0      收藏:0      [点我收藏+]

标签:折线   tool   class   tle   设定   lin   nta   category   axis   

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

 

清爽折线图

标签:折线   tool   class   tle   设定   lin   nta   category   axis   

原文地址:https://www.cnblogs.com/kkvt/p/12370111.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!