当前位置: 首页 > article >正文

echarts 折线图内容区域渐变、曲线平滑

        实现echarts折线图内容区域渐变,需要在series中进行配置。areaStyle:区域填充样式。设置后显示成区域面积图。

示例代码:

series: [
  {
    type: "line",
    name: this.legendData[0],
    color: "#E3FF34",
    symbolSize: 14,
    symbol: "circle",
    showSymbol: false,
    data: this.echartData1,
    smooth: true,
    itemStyle: {
      shadowColor: "#ffffff",
      shadowBlur: 5,
    },
    areaStyle: {
      normal: {
        //颜色渐变函数 前四个参数分别表示四个位置依次为左、下、右、上
        color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
          {
            offset: 0,
            color: "rgba(227, 255, 52, 0.2)", // 0% 处的颜色
          },
          {
            offset: 1,
            color: "rgba(227, 255, 52, 0)", // 100% 处的颜色
          },
        ]), //背景渐变色
      },
    },
    lineStyle: {
      // 系列级个性化折线样式
      width: 4,
      type: "solid",
      color: "#E3FF34",
    },
  },
  {
    type: "line",
    name: this.legendData[1],
    color: "#00A3FF",
    symbolSize: 14,
    symbol: "circle",
    showSymbol: false,
    data: this.echartData2,
    smooth: true,
    itemStyle: {
      shadowColor: "#ffffff",
      shadowBlur: 5,
    },
    areaStyle: {
      normal: {
        //颜色渐变函数 前四个参数分别表示四个位置依次为左、下、右、上
        color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
          {
            offset: 0,
            color: "rgba(0, 163, 255, 0.20)", // 0% 处的颜色
          },
          {
            offset: 1,
            color: "rgba(0, 163, 255, 0)", // 100% 处的颜色
          },
        ]), //背景渐变色
      },
    },
    lineStyle: {
      // 系列级个性化折线样式
      width: 4,
      type: "solid",
      color: "#00A3FF",
    },
  },
]

效果如下:


http://www.kler.cn/a/135716.html

相关文章:

  • 一个怀旧,俺的第一个共享软件
  • leetcode203. Remove Linked List Elements
  • C语言 | Leetcode C语言题解之第543题二叉树的直径
  • King3399(ubuntu文件系统)wifi设备树分析
  • window10解决 docker is starting 问题
  • string接口的深度理解(内附思维导图)
  • MyBatis 事务源码分析
  • 2024年软件测试面试必看系列,看完去面试你会感谢我的!!
  • [Jenkins] Docker 安装Jenkins及迁移流程
  • nginx代理本地服务请求,避免跨域;前端图片压缩并上传
  • ajax,axios,fetch
  • Nodejs--Express框架使用
  • 编程刷题网站以及实用型网站推荐
  • Oracle Data Redaction和Oracle Data Pump
  • C#asp.net考试系统+sqlserver
  • 设计模式-创建型模式-单例模式
  • Flink之OperatorState
  • Android MQTT开发之 Hivemq MQTT Client
  • 全志R128内存泄漏调试案例
  • 鸿蒙4.0开发笔记之DevEco Studio之配置代码片段快速生成(三)
  • 【Python 千题 —— 基础篇】输出可以被5整除的数
  • 嵌入式QTGit面试题
  • 计算机毕业设计选题推荐-高校后勤报修微信小程序/安卓APP-项目实战
  • 可逆矩阵的性质
  • 获取阿里云Docker镜像加速器
  • Arduino驱动DS18B20数字温度传感器(温湿度传感器)