Echarts折线图折线呈现为渐变线条

该文介绍如何使用ECharts库来创建一条具有渐变颜色的折线图,线的颜色从两端淡入到中间亮出,同时区域面积也填充相应的渐变色。配置主要涉及lineStyle和areaStyle属性,以及LinearGradient颜色定义。
摘要由CSDN通过智能技术生成

想要如图所示的折线图,折线线条为渐变颜色,两边颜色接近区域面积的颜色,中间颜色亮度高一些,在series中使用lineStyle,将其color设置为渐变色:

option = {
  xAxis: {
    type: 'category',
    data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
  },
  yAxis: {
    type: 'value'
  },
  series: [
    {
      smooth: true,
      showSymbol: false, // 只有在 tooltip hover 的时候显示symbol
      lineStyle: { // 线条样式
        normal: {
          width: 4,
          color: new echarts.graphic.LinearGradient(0, 0, 1, 0, [ // 颜色渐变
            {
              offset: 0,
              color: 'rgb(0, 255, 255, 0)'
            },
            {
              offset: 0.2,
              color: 'rgb(0, 255, 255, 0)'
            },
            {
              offset: 0.4,
              color: 'rgb(0, 200, 200, 80)'
            },
            {
              offset: 0.6,
              color: 'rgb(0, 200, 200, 80)'
            },
            {
              offset: 0.8,
              color: 'rgb(0, 255, 255, 0)'
            },
            {
              offset: 1,
              color: 'rgb(0, 255, 255, 0)'
            }
          ])
        }
      },
      areaStyle: { // 区域面积
        color: {
          type: 'linear',
          x: 0,
          y: 0,
          x2: 0,
          y2: 1,
          colorStops: [
            {
              offset: 0,
              color: 'rgb(0, 50, 100)' // 0% 处的颜色
            },
            {
              offset: 0.5,
              color: 'rgb(0, 50, 100, 50)' // 50% 处的颜色
            },
            {
              offset: 1,
              color: 'rgb(0, 50, 100, 0)' // 100% 处的颜色
            }
          ]
        }
      },
      data: [150, 230, 224, 218, 135, 147, 260],
      type: 'line'
    }
  ]
};

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值