...
电子表格或自助仪表盘上希望实现面积图颜色渐变,如下截图
解决方案
在自助仪表盘中,具体请参考如下扩展属性V9版本的自助仪表盘中,具体请参考如下扩展属性
代码块 | ||
---|---|---|
| ||
"series": [{ "areaStyle": { "normal": { "color": { "x": 0, "y": 0, "x2": 0, "y2": 1, "type": "linear", "global": false, "colorStops": [{ "offset": 0, "color": "rgba(80,141,255,0.39)" }, { "offset": 0.34, "color": "rgba(56,155,255,0.25)" }, { "offset": 1, "color": "rgba(38,197,254,0.00)" } ] } } } }] |
V10版本的自助仪表盘中,具体请参考如下扩展属性
代码块 | ||
---|---|---|
| ||
{
"series": [
{
"areaStyle": {
"normal": {
"color": {
"x": 0,
"y": 0,
"x2": 0,
"y2": 1,
"type": "linear",
"global": false,
"colorStops": [
{
"offset": 0,
"color": "rgba(80,141,255,0.39)"
},
{
"offset": 0.34,
"color": "rgba(56,155,255,0.25)"
},
{
"offset": 1,
"color": "rgba(38,197,254,0.00)"
}
]
}
}
}
}
]
} |