页面树结构

版本比较

标识

  • 该行被添加。
  • 该行被删除。
  • 格式已经改变。

(本文档仅供参考)

问题

电子表格或自助仪表盘上希望实现面积图颜色渐变,如下截图

Image Modified

解决方案

具体请参考如下扩展属性V9版本的自助仪表盘中,具体请参考如下扩展属性

image_1616987899107_pprp1.pngImage Added

代码块
linenumberstrue
"series": [{
"areaStyle": {
"normal": {
"color": {
"x": 0,
"y": 0,
"x2": 0,
"y2": 1,
"type": "linear",
"global": false,
"colorStops": [{
	"axisLine"offset": 0,
"color": "rgba(80,141,255,0.39)"
},
{
		"show
"offset": 0.34,
"color": "rgba(56,155,255,0.25)"
},
{
"offset": true1,
		"lineStylecolor": "rgba(38,197,254,0.00)"
}
]
}
}
}
}]

V10版本的自助仪表盘中,具体请参考如下扩展属性

Image Added

代码块
linenumberstrue
{
			"colorseries": [
		{
		[	"areaStyle": {
					1,"normal": {
					"color": {
						"x": 0,
						"y": 0,
						"x2": 10,
						"y2": 01,
						"type": "linear",
						"global": false,
						"colorStops": [
							{
								"offset": 0.5,
								"color": "rgba(80,141,255,0.39)"
							},
							{
								"offset": 0.34,
								"color": "#FFC600rgba(56,155,255,0.25)"
							},
							{
								"offset": 1,
								"color": "#0B95FFrgba(38,197,254,0.00)"
							}
						]
					}
				]}
			]}
		}
	}]
}]

另,如希望实现从横向颜色渐变,需要修改下图红框代码。
具体说明见百度文档:https://www.jianshu.com/p/238fbd7927ab

Image Added