颜色渐变函数 前四个参数分别表示四个位置依次为 右下左上
// 颜色渐变函数 前四个参数分别表示四个位置依次为
// 右下左上
color: new echarts.graphic.LinearGradient(1, 0, 0, 0, [{
offset: 0,
color: '#00E2FF'
},
{
offset: 1,
color: '#0063BF'
}
])
2024年07月17日
颜色渐变函数 前四个参数分别表示四个位置依次为 右下左上
// 颜色渐变函数 前四个参数分别表示四个位置依次为
// 右下左上
color: new echarts.graphic.LinearGradient(1, 0, 0, 0, [{
offset: 0,
color: '#00E2FF'
},
{
offset: 1,
color: '#0063BF'
}
])