IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> JavaScript知识库 -> echarts 线形图如何画阴影线条和区域渐变 -> 正文阅读

[JavaScript知识库]echarts 线形图如何画阴影线条和区域渐变

实现的效果:
在这里插入图片描述

lineStyle: { // 线条样式
    color: {
        colorStops: [{
            offset: 0, color: '#FA8558',
        }, {
            offset: 1, color: '#FAAF58'
        }],
    },
    width: 2, // 线条粗细
    shadowOffsetY: 12, // 阴影线条的偏移量
    shadowColor: 'rgba(59, 138, 254, 0.1)'  // 阴影线条的颜色
},
areaStyle: { // 区域样式
    color: {
        type: 'linear',
        x: 0,
        y: 0,
        x2: 0,
        y2: 1,
        colorStops: [{
            offset: 0, color: 'rgba(250, 157, 88, 0.2)' // 0% 处的颜色
        }, {
            offset: 1, color: 'rgba(250, 157, 88, 0.0001)' // 100% 处的颜色
        }],
    }
},

最后贴一下上图的option完整的配置

const lineData = {
    legend: ['Alegend', 'Blegend', 'Clegend'],
    xData: ['2021-11-01', '2021-11-02', '2021-11-03', '2021-11-04', '2021-11-05', '2021-11-06', '2021-11-07'],
    yData: [
        {
            name: 'Alegend',
            data: [120, 40, 300, 30, 150, 20, 210],
            type: 'line',
            smooth: true,
            symbol: 'none',
            itemStyle: {
                normal: {
                    color: '#2E79FF',
                    lineStyle: {
                        color: {
                            colorStops: [{
                                offset: 0, color: '#8477FF',
                            }, {
                                offset: 1, color: '#5CCAFF'
                            }],
                        },
                        width: 2,
                        shadowOffsetY: 12,
                        shadowColor: 'rgba(59, 138, 254, 0.1)'
                    },
                    areaStyle: {
                        color: {
                            type: 'linear',
                            x: 0,
                            y: 0,
                            x2: 0,
                            y2: 1,
                            colorStops: [{
                                offset: 0, color: 'rgba(46, 121, 255, 0.2)' // 0% 处的颜色
                            }, {
                                offset: 1, color: 'rgba(46, 121, 255, 0.0001)' // 100% 处的颜色
                            }],
                        }
                    },
                }
            },
            
        },
        {
            name: 'Blegend',
            data: [220, 182, 191, 234, 290, 330, 310],
            type: 'line',
            smooth: true,
            symbol: 'none',
            itemStyle: {
                normal: {
                    color: '#5AE4E9',
                    lineStyle: {
                        color: {
                            colorStops: [{
                                offset: 0, color: '#5FC5F6',
                            }, {
                                offset: 1, color: '#57F4E2'
                            }],
                        },
                        width: 2,
                        shadowOffsetY: 12,
                        shadowColor: 'rgba(59, 138, 254, 0.1)'
                    },
                    areaStyle: {
                        color: {
                            type: 'linear',
                            x: 0,
                            y: 0,
                            x2: 0,
                            y2: 1,
                            colorStops: [{
                                offset: 0, color: 'rgba(90, 228, 233, 0.2)' // 0% 处的颜色
                            }, {
                                offset: 1, color: 'rgba(90, 228, 233, 0.0001)' // 100% 处的颜色
                            }],
                        }
                    },
                }
            },
            
        },
        {
            name: 'Clegend',
            data: [150, 232, 201, 154, 190, 330, 410],
            type: 'line',
            smooth: true,
            symbol: 'none',
            itemStyle: {
                normal: {
                    color: '#FA9D58', // legend的颜色
                    lineStyle: { // 线条渐变
                        color: {
                            colorStops: [{
                                offset: 0, color: '#FA8558',
                            }, {
                                offset: 1, color: '#FAAF58'
                            }],
                        },
                        width: 2, // 线条粗细
                        shadowOffsetY: 12, // 阴影线条的偏移量
                        shadowColor: 'rgba(59, 138, 254, 0.1)'  // 阴影线条的颜色
                    },
                    areaStyle: { // 区域渐变
                        color: {
                            type: 'linear',
                            x: 0,
                            y: 0,
                            x2: 0,
                            y2: 1,
                            colorStops: [{
                                offset: 0, color: 'rgba(250, 157, 88, 0.2)' // 0% 处的颜色
                            }, {
                                offset: 1, color: 'rgba(250, 157, 88, 0.0001)' // 100% 处的颜色
                            }],
                        }
                    },
                }
            },
            
        }
    ]
}
const option = {
   grid: {
        left: 48,
        top: '18%',
        bottom: '10%',
        right: 48
    },
    legend: {
        selectedMode: false,
        data: this.lineData.legend,
        icon: 'circle',
        itemHeight: 8, // itemHeight + itemWidth设置icon的大小
        itemWidth: 8,
        itemGap: 24,
        left: 5,
        textStyle: {
            color: 'rgba(21, 22, 24, 0.72)'
        }
    },
    tooltip: {
        trigger: 'axis'
    },
    xAxis: {
        type: 'category',
        boundaryGap: false,  // 第一个值从原点开始
        axisTick: {
            show: false // 隐藏刻度尺
        },
        axisLine: {
            lineStyle: {
                color: 'rgba(195,202,207,0.3)'
        },
        axisLabel: {
            color: 'rgba(21, 22, 24, 0.72)'
        },
        data: this.lineData.xData
    },
    yAxis: {
        type: 'value',
        axisTick: {
            show: false // 隐藏刻度尺
        },
        axisLine: {
            // 坐标轴线的样式
            lineStyle: {
                color: 'rgba(195,202,207,0)'
            },
            show: false
        },
        splitLine: {
            // 垂直坐标轴的分割线
            lineStyle: {
                color: 'rgba(195,202,207,0.3)'
            }
        },
        axisLabel: {
            // 坐标轴文字样式
            color:  'rgba(21, 22, 24, 0.72)',
            align: 'center',
            margin: 20
        }
    },
    series: this.lineData.yData
}
  JavaScript知识库 最新文章
ES6的相关知识点
react 函数式组件 & react其他一些总结
Vue基础超详细
前端JS也可以连点成线(Vue中运用 AntVG6)
Vue事件处理的基本使用
Vue后台项目的记录 (一)
前后端分离vue跨域,devServer配置proxy代理
TypeScript
初识vuex
vue项目安装包指令收集
上一篇文章      下一篇文章      查看所有文章
加:2022-03-17 22:02:04  更:2022-03-17 22:05:18 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 5:28:15-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码