您可以添加一个标记 组:
{
"type": "group",
"data": [
{
"name": "data_category",
"source": "table",
"transform": [
{
"type": "aggregate",
"groupby": ["category"],
"fields": ["category"],
"ops": ["count"]
},
{"type": "identifier", "as": "category_id"}
]
}
],
"marks": [
{
"name": "category_background",
"type": "rect",
"from": {"data": "data_category"},
"encode": {
"enter": {
"y": {"scale": "yscale", "field": "category"},
"height": {"scale": "yscale", "band": 1},
"width": {"signal": "width"},
"fill": {
"signal": "datum['category_id'] % 2 == 0 ? '#eee' : '#ccc'"
},
"fillOpacity": {"value": 0.6}
}
}
}
]
},
参考文献
组标记:
https://vega.github.io/vega/docs/marks/group/
标识符变换:
https://vega.github.io/vega/docs/transforms/identifier/
Open in Vega Editor