当前位置: 首页 > 知识库问答 >
问题:

前端 - Vue项目使用echarts内置渐变色函数,报错如下:?

竺绍辉
2023-05-08

报错:

Failed to execute 'addColorStop' on 'CanvasGradient': The value provided ('rgba (11, 168, 44, 0)') could not be parsed as a color.

代码:

areaStyle: {
            color: new this.$echarts.graphic.LinearGradient(0, 0, 0, 1, [
              {
                offset: 0,
                color: colorArr1[index]
              },
              {
                offset: 1,
                color: colorArr2[index]
              }
            ])
          }

共有3个答案

钦侯林
2023-05-08

image.png

钱弘壮
2023-05-08

image.png
colorArr1数组中的颜色用16位的编码比如#ffffff, 不用rgba

尉迟兴修
2023-05-08

rgba (11, 168, 44, 0),空格的问题吧
https://jsrun.net/bSdKp/edit

 类似资料: