Grouped Bar Chart
View this example in the online editor
Vega-Lite JSON Specification
{
"$schema": "https://vega.github.io/schema/vega-lite/v4.json",
"data": { "url": "data/population.json"},
"transform": [
{"filter": "datum.year == 2000"},
{"calculate": "datum.sex == 2 ? 'Female' : 'Male'", "as": "gender"}
],
"width": {"step": 12},
"mark": "bar",
"encoding": {
"column": {
"field": "age", "type": "ordinal", "spacing": 10
},
"y": {
"aggregate": "sum", "field": "people",
"title": "population",
"axis": {"grid": false}
},
"x": {
"field": "gender",
"axis": {"title": ""}
},
"color": {
"field": "gender",
"scale": {"range": ["#675193", "#ca8861"]}
}
},
"config": {
"view": {"stroke": "transparent"},
"axis": {"domainWidth": 1}
}
}