vl.markBar()
.data(result)
.padding(10)
.encode({
column: {
field: "year", type: "ordinal", spacing: 10
},
y: {
aggregate: "sum", field: "candidatevotes",
axis: {"grid": false}
},
x: {
field: "party", axis: {title: ""}
},
color: {
field: "party",
scale: {range: ["#0652DD", "#ff0803"]}
},
tooltip: [
{field: "candidate", type: "nominal"},
{field: "candidatevotes", aggregate: "sum", title: "votes"}
],
})
.config({
"view": {"stroke": "transparent"},
"axis": {"domainWidth": 1}
})
.render()