lineecharts 折线配置项内容和展示

line

配置项如下
      var data = {
    city: ["一月", "二月", "三月", "四月", "五月", "六月"],
    num: ["40", "60", "22", "85", "50", "40"]
}
option = {
        backgroundColor:'#0e1c47',
    tooltip: {
        trigger: 'axis',
        axisPointer: {
            lineStyle: {
                color: {
                    type: 'linear',
                    x: 0,
                    y: 0,
                    x2: 0,
                    y2: 1,
                    colorStops: [{
                        offset: 0,
                        color: 'rgba(255,255,255,0)' // 0% 处的颜色
                    }, {
                        offset: 0.5,
                        color: 'rgba(255,255,255,1)' // 100% 处的颜色
                    }, {
                        offset: 1,
                        color: 'rgba(255,255,255,0)' // 100% 处的颜色
                    }],
                    global: false // 缺省为 false
                }
            },
        },

    },
    grid: {
        top: '18%',
        left: '15%',
        right: '5%',
        bottom: '25%',
        // containLabel: true
    },
    xAxis: [{
        type: 'category',
        boundaryGap: true,
        axisLine: { //坐标轴轴线相关设置。数学上的x轴
            show: true,
            lineStyle: {
                color: '#092b5d'
            },
        },
        axisLabel: { //坐标轴刻度标签的相关设置
            textStyle: {
                color: '#24c4ff',
                margin: 15,
            },
            formatter: function(data) {
                return data + ""
            }
        },
        axisTick: {
            show: false,
        },
        data: data.city
    }],
    yAxis: [{
        min: 0,
        max: 100,
        name: '万元',
        nameLocation: 'end', // 坐标轴名称显示位置。
        nameTextStyle: {
            color: '#24c4ff',
            align: 'center',
            fontSize: 12,
            padding: [0, 50, 8, 10]
        },
        splitLine: {
            show: true,
            lineStyle: {
                color: ['#092b5d'],
                type: 'dashed', // 分割线
            },
        },
        axisLine: {
            show: false,
            lineStyle: {
                color: "#092b5d"
            }

        },
        axisLabel: {
            show: true,
            textStyle: {
                color: '#24c4ff',

            },
            formatter: function(value) {
                if (value === 0) {
                    return value
                }
                return value + ''
            }
        },
        axisTick: {
            show: false,
        },
    }],
    series: [{
        name: '收支结余',
        type: 'line',
        symbol: 'circle', // 默认是空心圆(中间是白色的),改成实心圆
        showAllSymbol: true,
        smooth: true,
        symbolSize: 8,
        lineStyle: {
            normal: {
                color: {
                type: 'linear',
                x: 0,
                y: 0,
                x2: 0,
                y2: 1,
                colorStops: [{
                    offset: 0, color: '#24c4ff' // 0% 处的颜色
                }, {
                    offset: 0.5,
                    color: 'rgba(36, 196, 255, .5)'
                }, {
                    offset: 1, color: 'blue' // 100% 处的颜色
                }],
                global: false // 缺省为 false
                }
            },
            borderColor: 'rgba(0,0,0,.4)',
        },
        itemStyle: {
            color: "rgba(14,30,73,1)",
            borderColor: "#24c4ff",
            borderWidth: 1

        },
        label: {
            normal: {
                show: true,
                position: "top",
                padding: [3, 7],
                distance: 8,
                formatter: [
                    ' {a|{c}}',
                ].join(','),
                rich: {
                    a: {
                        color: '#fff',
                        align: 'center',
                    },
                },
                backgroundColor: 'rgba(36, 196, 255, .5)'
            }
        },
        tooltip: {
            show: true
        },
        areaStyle: { //区域填充样式
            normal: {
                //线性渐变,前4个参数分别是x0,y0,x2,y2(范围0~1);相当于图形包围盒中的百分比。如果最后一个参数是‘true’,则该四个值是绝对像素位置。
                color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{
                        offset: 0,
                        color: "rgba(124, 128, 244,.3)"


                    },
                    {
                        offset: 1,
                        color: "rgba(124, 128, 244, 0)"
                    }
                ], false),
                shadowColor: 'rgba(53,142,215, 0.9)', //阴影颜色
                shadowBlur: 20 //shadowBlur设图形阴影的模糊大小。配合shadowColor,shadowOffsetX/Y, 设置图形的阴影效果。
            }
        },
        data: data.num
    }]
};
    
截图如下