name: item?.title,
type: 'line',
smooth: true,
data:list,
lineStyle: { // 折线图线条渐变色
color: {
type: 'linear',
x: 0,
y: 0,
x2: 1,
y2: 0,
colorStops: [
{
offset: 0, color: 'red' // 0% 处的颜色
},
{
offset: 1, color: 'white' // 100% 处的颜色
}
],
global: false // 缺省为 false
}
},
areaStyle: { // 折线图范围渐变色
color: {
type: 'linear',
x: 0,
y: 0,
x2: 0,
y2: 1,
colorStops: [
{
offset: 0, color: 'red' // 0% 处的颜色
},
{
offset: 1, color: 'white' // 100% 处的颜色
}
],
global: false // 缺省为 false
}
},