Нет возможности привязать легенду к центру внизу, но вы можете установить orient: "none"
и использовать свойства legendX
и legendY
, чтобы разместить ее именно там, где вы хотите. Например ( редактор vega ):
{
"data": {"url": "data/cars.json"},
"mark": "point",
"encoding": {
"x": {"field": "Horsepower", "type": "quantitative"},
"y": {"field": "Miles_per_Gallon", "type": "quantitative"},
"color": {
"field": "Origin",
"type": "nominal",
"legend": {
"orient": "none",
"direction": "horizontal",
"legendX": 120,
"legendY": 340,
"title": null
}
}
},
"height": 300,
"width": 400
}