返回顶部
首页 > 资讯 > 前端开发 > JavaScript >echarts中几种渐变方式的具体实现方式
  • 898
分享到

echarts中几种渐变方式的具体实现方式

echarts渐变方式echarts 渐变 2022-11-16 00:11:59 898人浏览 安东尼
摘要

目录在echarts 中实现渐变的具体几种方式方式一:方式二:colorStops总结在echarts 中实现渐变的具体几种方式 在我们日常使用Echarts图表过程中,会遇到一些要

在echarts 中实现渐变的具体几种方式

在我们日常使用Echarts图表过程中,会遇到一些要求我们的echarts图表能实现颜色渐变,以下几种方式就能满足你的需求。文档参考 ECharts option 文档 。

方式一:

线性渐变:new echarts.graphic.LinearGradient(x,y,x2,y2,offset,boolean)

  • x,y,x2,y2,包围框中的百分比,数值范围 0-1;
  • offset,类似颜色线性梯度,数值范围 0-1;
  • boolean,默认false,若最后参数为true,前四个参数将使用像素位置。

径向渐变:new echarts.graphic.RadialGradient(x,y,r,offset,boolean)

  • x,y,代表圆心,数值范围 0-1;
  • r,代表半径,数值范围 0-1;
  • offset,类似颜色线性梯度,数值范围 0-1;
  • boolean,默认false,若最后参数为true,前四个参数将使用像素位置。

采用图片显示:new echarts.graphic.Pattern(imageDom,repeat)

  • imageDom,仅支持 htmlImageElement 和 HTMLcanvasElement形式图片;
  • repeat,默认’repeat’,可取值还有’repeat-x’, ‘repeat-y’, or ‘no-repeat’;

代码示例:

// 创建 HTMLImageElement
// HTMLCanvasElement请自行研究去
var imageDom = new Image(); // Image 构造函数
imageDom.src = '/static/img/map_bg.png'; // 图片路径
imageDom.alt = '这是一张图片';

// 应用如下
// color:{
//   image: imageDom, // 支持为 HTMLImageElement, HTMLCanvasElement,不支持路径字符串
//    repeat: 'repeat' // 是否平铺,可以是 'repeat-x', 'repeat-y', 'no-repeat'
// }

方式二:colorStops

线性渐变:colorStops - linear

  • type:‘linear’,线性渐变
  • x,y,x2,y2,代表包围框中的百分比,数值范围 0-1;
  • colorStops,类似颜色线性梯度,数值范围 0-1;
  • global,默认false

径向渐变:colorStops - radial

  • type:‘radial’,径向渐变
  • x,y,代表圆心,数值范围 0-1;
  • r,代表半径,数值范围 0-1;
  • colorStops,类似颜色线性梯度,数值范围 0-1;
  • global,默认false

效果图:

代码如下:

var imageDom = new Image(); // Image 构造函数
imageDom.src = 'https://GitHub.com/iuvc/magicjs/blob/main/public/images/issues/blue-white-background.jpg?raw=true';
imageDom.alt = '测试';
option = {
  title: {
    text: 'echarts 渐变',
    left: 'center'
  },
  tooltip: {
    trigger: 'item',
    fORMatter: '{a} <br/>{b} : {c} ({d}%)'
  },
  legend: {
    top: 40,
    left: 0,
    orient: 'vertical',
    data: [
      '线性渐变区域 LinearGradient',
      '径向渐变区域 RadialGradient',
      '线性渐变区域 ColorStep-linear',
      '径向渐变区域 ColorStep-radial',
      '图片显示'
    ]
  },
  series: [
    {
      name: 'Radius Mode',
      type: 'pie',
      radius: [20, '70%'],
      center: ['50%', '50%'],
      roseType: 'radius',
      itemStyle: {
        borderRadius: 5
      },
      label: {
        show: true
      },
      emphasis: {
        label: {
          show: true
        }
      },
      data: [
        {
          value: 40,
          name: '线性渐变区域 LinearGradient',
          itemStyle: {
            //  线性渐变方式一 ======================================================
            // LinearGradient前四个分参数别代表右,下,左,上,数值0-1
            color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
              {
                offset: 0,
                color: 'rgba(255,174,19,0.7)'
              },
              {
                offset: 1,
                color: 'rgba(255,174,19,0.05)'
              }
            ])
          }
        },
        {
          value: 40,
          name: '径向渐变区域 RadialGradient',
          itemStyle: {
            //  径向渐变方式一 ======================================================
            // RadialGradient前三个分参数别代表圆心(x,y),半径(数值0-1)
            color: new echarts.graphic.RadialGradient(0.5, 0.5, 0.8, [
              {
                offset: 0,
                color: 'rgba(255,154,119,1)'
              },
              {
                offset: 1,
                color: 'rgba(255,154,119,0.05)'
              }
            ])
          }
        },
        {
          value: 33,
          name: '线性渐变区域 ColorStep-linear',
          itemStyle: {
            //  线性渐变方式二 ======================================================
            // x,y,x2,y2数值同LinearGradient前四个参数分别代表右,下,左,上,数值0-1
            color: {
              type: 'linear',
              x: 0,
              y: 0,
              x2: 0,
              y2: 1,
              colorStops: [
                {
                  offset: 0,
                  color: 'rgba(60,216,208,0.7)' // 0% 处的颜色
                },
                {
                  offset: 1,
                  color: 'rgba(60,216,208,0.05)' // 100% 处的颜色
                }
              ],
              global: false // 缺省为 false
            }
          }
        },
        {
          value: 28,
          name: '径向渐变区域 ColorStep-radial',
          itemStyle: {
            //  径向渐变方式二 ======================================================
            // x 0.5 y 0.5 代表圆心,r 代表半径
            color: {
              type: 'radial',
              x: 0.5,
              y: 0.5,
              r: 0.9,
              colorStops: [
                {
                  offset: 0,
                  color: 'rgba(82,216,60, 0.7)' // 0% 处的颜色
                },
                {
                  offset: 1,
                  color: 'rgba(82,216,60, 0.05)' // 100% 处的颜色
                }
              ],
              global: false // 缺省为 false
            }
          }
        },
        { 
            value: 22, 
            name: '图片显示' ,
            itemStyle: {
            //  图片显示 ======================================================
                color: {
                  image: imageDom, // 支持为 HTMLImageElement, HTMLCanvasElement,不支持路径字符串
                  repeat: 'repeat' // 是否平铺,可以是 'repeat-x', 'repeat-y', 'no-repeat'
                }
            }
        }
      ]
    }
  ]
};

其他示例:

代码如下:


option = {
  title: {
    text: '渐变区域图'
  },
  tooltip: {
    trigger: 'axis',
    axisPointer: {
      type: 'cross',
      label: {
        backgroundColor: '#6a7985'
      }
    }
  },
  legend: {
    top: 15,
    data: [
      '线性渐变区域 LinearGradient',
      '线性渐变区域 ColorStep-linear',
      '径向渐变区域 ColorStep-radial',
      '径向渐变区域 RadialGradient'
    ]
  },
  grid: {
    top: 55,
    left: 45,
    right: 15,
    bottom: 25
  },
  xAxis: [
    {
      type: 'cateGory',
      boundaryGap: true,
      axisLine: {
        show: false,
        onZero: true,
        lineStyle: {
          color: '#999999'
        }
      },
      splitLine: {
        show: false
      },
      axisTick: {
        show: false
      },
      data: [
        '00:00',
        '00:15',
        '00:30',
        '00:45',
        '01:00',
        '01:15',
        '01:30',
        '01:45',
        '02:00',
        '02:15',
        '02:30',
        '02:45',
        '03:00',
        '03:15',
        '03:30',
        '03:45',
        '04:00',
        '04:15',
        '04:30',
        '04:45',
        '05:00',
        '05:15',
        '05:30',
        '05:45',
        '06:00',
        '06:15',
        '06:30',
        '06:45',
        '07:00',
        '07:15',
        '07:30',
        '07:45',
        '08:00',
        '08:15',
        '08:30',
        '08:45',
        '09:00',
        '09:15',
        '09:30',
        '09:45',
        '10:00',
        '10:15',
        '10:30',
        '10:45',
        '11:00',
        '11:15'
      ]
    }
  ],
  yAxis: [
    {
      type: 'category',
      boundaryGap: true,
      axisLine: {
        show: false,
        onZero: true,
        lineStyle: {
          color: '#999999'
        }
      },
      splitLine: {
        show: false
      },
      axisTick: {
        show: false
      }
    }
  ],
  series: [
    {
      name: '线性渐变区域 LinearGradient',
      type: 'line',
      stack: '总量',
      data: [
        1.67, 1.25, 1.02, 1.44, 1.81, 1.13, 1.58, 1.13, 1.56, 1.3, 1.9, 1.3,
        1.55, 1.94, 1.69, 1.69, 1.8, 1.21, 1.29, 1.58, 1.04, 1.67, 1.07, 1.18,
        1.57, 1.05, 1.63, 1.28, 1.28, 1.58, 1.88, 1.2, 1.63, 1.59, 1.43, 1.25,
        1.68, 1.25, 1.12, 1.31, 1.6, 1.62, 1.57, 1.2, 1.02, 1.42, 1.91, 1.97,
        1.32, 1.06, 1.3, 1.22, 1.74, 1.02, 1.75, 1.2
      ],
      areaStyle: {
        color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
          {
            offset: 0,
            color: 'rgba(255,174,19,0.7)'
          },
          {
            offset: 1,
            color: 'rgba(255,174,19,0.05)'
          }
        ])
      },
      itemStyle: {
        color: 'rgba(255,174,19,.1)'
      },
      lineStyle: {
        color: 'rgba(255,174,19,.1)'
      },
      smooth: true,
      smoothMonotone: 'x',
      symbol: 'circle'
    },
    {
      name: '线性渐变区域 ColorStep-linear',
      type: 'line',
      stack: '总量',
      data: [
        2.31, 2.27, 1.64, 1.56, 1.75, 1.62, 2.18, 2.12, 1.97, 2.45, 2.39, 2.3,
        1.78, 1.82, 1.82, 1.76, 1.78, 1.63, 1.54, 1.6, 1.61, 1.68, 1.67, 1.67,
        2.34, 1.69, 2.18, 2.25, 2.44, 2.4, 1.97, 2.05, 2.05, 2.46, 1.62, 1.66,
        1.66, 1.87, 1.59, 1.99, 2.45, 2.05, 1.53, 2.39, 1.77, 1.99, 2.14, 2.33,
        1.55, 1.87, 1.65, 2.02, 1.68, 2.13, 1.88, 2.19
      ],
      areaStyle: {
        color: {
          type: 'linear',
          x: 0,
          y: 0,
          x2: 0,
          y2: 1,
          colorStops: [
            {
              offset: 0,
              color: 'rgba(60,216,208,0.7)' // 0% 处的颜色
            },
            {
              offset: 1,
              color: 'rgba(60,216,208,0.05)' // 100% 处的颜色
            }
          ],
          global: false // 缺省为 false
        }
      },
      itemStyle: {
        color: 'rgba(60,216,208,.1)'
      },
      lineStyle: {
        color: 'rgba(60,216,208,.1)'
      },
      smooth: true,
      smoothMonotone: 'x',
      symbol: 'circle'
    },
    {
      name: '径向渐变区域 RadialGradient',
      type: 'line',
      stack: '总量',
      label: {
        normal: {
          show: true,
          position: 'top'
        }
      },
      data: [
        2.69, 2.47, 2.53, 3.31, 3.25, 3.12, 2.66, 2.58, 3.01, 3.21, 2.69, 2.72,
        2.67, 3.34, 3.21, 2.79, 3.23, 3.07, 2.84, 2.46, 3.25, 2.92, 2.42, 2.61,
        2.83, 3.29, 2.44, 3.38, 2.82, 2.56, 2.94, 2.42, 2.95, 2.82, 3.18, 2.6,
        2.91, 3.07, 2.57, 2.45, 2.45, 2.94, 2.86, 3.12, 3.07, 3.02, 2.53, 2.64,
        2.97, 2.62, 2.79, 2.68, 3.24, 3.38, 2.67, 3.17
      ],
      areaStyle: {
        color: new echarts.graphic.RadialGradient(0.5, 0.5, 0.8, [
          {
            offset: 0,
            color: 'rgba(255,154,119,.7)'
          },
          {
            offset: 1,
            color: 'rgba(255,154,119,0.05)'
          }
        ])
      },
      itemStyle: {
        color: 'rgba(255,154,119,.1)'
      },
      lineStyle: {
        color: 'rgba(255,154,119,.1)'
      },
      smooth: true,
      smoothMonotone: 'x',
      symbol: 'circle'
    },
    {
      name: '径向渐变区域 ColorStep-radial',
      type: 'line',
      stack: '总量',
      label: {
        normal: {
          show: true,
          position: 'top'
        }
      },
      data: [
        2.79, 2.57, 2.63, 3.41, 3.35, 3.22, 2.76, 2.68, 3.11, 3.31, 2.79, 2.82,
        2.77, 3.44, 3.31, 2.89, 3.33, 3.17, 2.94, 2.56, 3.35, 3.02, 2.52, 2.71,
        2.93, 3.39, 2.54, 3.48, 2.92, 2.66, 3.04, 2.52, 3.05, 2.92, 3.28, 2.7,
        3.01, 3.17, 2.67, 2.55, 2.55, 3.04, 2.96, 3.22, 3.17, 3.12, 2.63, 2.74,
        3.07, 2.72, 2.89, 2.78, 3.34, 3.48, 2.77, 3.27
      ],
      areaStyle: {
        color: {
          type: 'radial',
          x: 0.5,
          y: 0.5,
          r: 0.9,
          colorStops: [
            {
              offset: 0,
              color: 'rgba(82,216,60, 0.7)' // 0% 处的颜色
            },
            {
              offset: 1,
              color: 'rgba(82,216,60, 0.05)' // 100% 处的颜色
            }
          ],
          global: false // 缺省为 false
        }
      },
      itemStyle: {
        color: 'rgba(82,216,60,.1)'
      },
      lineStyle: {
        color: 'rgba(82,216,60,.1)'
      },
      smooth: true,
      smoothMonotone: 'x',
      symbol: 'circle'
    }
  ]
};

总结

到此这篇关于echarts中几种渐变方式的具体实现的文章就介绍到这了,更多相关echarts渐变方式实现内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!

--结束END--

本文标题: echarts中几种渐变方式的具体实现方式

本文链接: https://lsjlt.com/news/172869.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
  • echarts中几种渐变方式的具体实现方式
    目录在echarts 中实现渐变的具体几种方式方式一:方式二:colorStops总结在echarts 中实现渐变的具体几种方式 在我们日常使用Echarts图表过程中,会遇到一些要...
    99+
    2022-11-16
    echarts渐变方式 echarts 渐变
  • echarts渐变的实现方式有哪些
    本文小编为大家详细介绍“echarts渐变的实现方式有哪些”,内容详细,步骤清晰,细节处理妥当,希望这篇“echarts渐变的实现方式有哪些”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起来学习新知识吧。在echarts 中实现渐...
    99+
    2023-07-04
  • Python输入方式具体的实现方式有哪几种
    这期内容当中小编将会给大家带来有关Python输入方式具体的实现方式有哪几种,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。Python输入方式一个很多人都关心的问题,其实在实际中最实用的有三种输入方式。1...
    99+
    2023-06-17
  • Struts2 实现Action的几种方式
    Struts2 实现 Action 的几种方式有以下几种:1. 实现 Action 接口:可以实现 Struts2 提供的 Action 接口,该接口定义了执行 Action 的方法 execute(),通过该方法可以处理请求并返回结果...
    99+
    2023-08-11
    Struts2
  • Struts2实现Action的几种方式
    Struts2实现Action的几种方式有以下几种:1. 实现Action接口:创建一个类并实现com.opensymphony.x...
    99+
    2023-08-17
    Struts2
  • ASP.NETCore实现中间件的几种方式
    前言 ASP.NET Core 中 HTTP 管道使用中间件组合处理的方式, 换句人话来说, 对于写代码的人而言,一切皆中间件. 业务逻辑/数据访问/等等一切都需要以中间件的方式来呈...
    99+
    2024-04-02
  • uniapp实现全局变量的几种方式总结
    目录前言1. 模块2. Vue.prototype3.  globalData4. vuex总结前言 在开发的过程中,我们不可避免的用到全局变量,比如我们的请求的公共路径这...
    99+
    2022-11-13
    uniapp全局变量四种实现方式 uniapp实例教程 uniapp全局变量使用
  • Android 截屏实现的几种方式
    Android 截屏分为四种:View 截屏、WebView 截屏、系统截屏 和 adb 截屏 image.png image.png 1、View 截屏 View 截图是将当前 View 界面截取下来,而对于屏幕上其他信息比如:状态栏...
    99+
    2023-08-31
    android webview java
  • MySQL 实现FULL JOIN的几种方式
    MySQL中没有full join 但我我们可以通过以下几种方式来实现 注意:UNION 和 UNION ALL 的区别, UNION 会自动去重而UNION ALL不...
    99+
    2023-09-05
    mysql
  • Struts 2 实现Action的几种方式
    Action用于处理用户的请求,因此也被称为业务控制器。每个Action类就是一个工作单元,Struts 2框架负责将用户的请求与相应的Action匹配,如果匹配成功,则调用该Action类对用户请求进行处理,而匹配规则需要在Struts ...
    99+
    2023-05-31
    struts action ct
  • java中实现多线程的几种方式
    Java多线程的使用有三种方法:继承Thread类、实现Runnable接口和使用Callable和Future创建线程。一、继承Thread类实现方式很简单,只需要创建一个类去继承Thread类然后重写run方法,在main方法中调用该类...
    99+
    2016-12-01
    java 多线程 方式
  • Redisson实现Redis分布式锁的几种方式
    目录Redis几种架构 普通分布式锁 单机模式 哨兵模式 集群模式 总结 Redlock分布式锁 实现原理 问题合集 前几天发的一篇文章《Redlock:Redis分布式锁最牛逼的实...
    99+
    2024-04-02
  • java中实现分页的常见几种方式
    文章目录 1. 前言2. 先说结论3. 例子1. 数据库SQL的限制条件(limit、fetch)2. 使用List集合的截取功能实现3. 插件PageHelper 1. 前言 无论是...
    99+
    2023-08-31
    mybatis java 分页 数据库 PageHelper
  • Android实现View滑动的几种方式
    什么是View?实现View滑动的方式有哪些? 1. 关于View我们需要知道的 (1)什么是View?     Android中的View类是...
    99+
    2022-06-06
    view Android
  • redis实现限流的方式有几种
    redis实现限流的方式有几种?针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更简单易行的方法。限流有许多种实现的方式,Redis具有很强大的功能,我用Red...
    99+
    2024-04-02
  • webpack几种手动实现HMR的方式
    目录1.前言2.GitHub3.基本配置项目目录package.jsonwebpack.config.jsmain.jsindex.htmlmain.vue4.webpack-dev...
    99+
    2024-04-02
  • Android 实现GIF播放的几种方式
    1. Glide播放 Glide是Android上比较常见的图片加载框架,其介绍可以看Android Glide简单使用。 布局文件,GIF文件可以在ImageView里面显示 调用load()方法,导入图片并用ImageView...
    99+
    2023-08-18
    android Gif
  • Spring AOP的几种实现方式总结
    Spring AOP的几种实现方式总结如下:1. 基于XML配置:在Spring配置文件中使用元素来定义切面和通知的配置,然后通过元...
    99+
    2023-08-17
    Spring AOP
  • JAVA几种方式实现深拷贝
    JAVA几种方式实现深拷贝 准备 定义两个类用于测试拷贝,类内容如下,目的是深拷贝一个User类的对象: @Data@Accessors(chain = true)public class User ...
    99+
    2023-09-05
    Java 拷贝 深拷贝 浅拷贝
  • vue中Echarts使用动态数据的两种实现方式
    目录Echarts使用动态数据的两种方式1.通过computed2.在data中定义optionvue Echarts几种常用图表动态数据切换1.柱状图 2.平滑折线面积图...
    99+
    2022-11-13
    vue Echarts Echarts动态数据 vue使用Echarts动态数据
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作