echarts中如何添加渐变色?

How to add gradient color in echarts?

我做了一个echartline graph。 现在,我想给它添加渐变色,如下图:

在这个link, it said it supports the setting as gradient color. But when I tried to do this as code given:

它给出了这个错误:

怎么办?

提前致谢。

  areaStyle: {
          color: new graphic.LinearGradient(0, 0, 0, 1, [
            {
              offset: 0,
              color: 'rgb(255, 158, 68)'
            },
            {
              offset: 1,
              color: 'rgb(255, 70, 131)'
            }])
        }

Echart 有图形class,可以让你访问渐变属性。您可以根据需要微调它,为数组中的颜色提供起点和终点。