echarts 折线图背景色渐变

1
2
3
4
5
6
7
8
9
10
11
12
// 填充区域的样式
areaStyle: {
normal: {
// 填充色渐变
color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
{ offset: 0, color: "#3aa7ff" },
{ offset: 0.5, color: "rgba(58, 167, 255,0.4)" },
{ offset: 1, color: "rgba(58, 167, 255,0)" }
])
}
},

效果图:


echarts 折线图背景色渐变
https://github.com/chergn/chergn.github.io/8186273c6327/
作者
全易
发布于
2024年3月28日
许可协议