Normalized Stacked Bar Chart
View this example in the online editor
Vega-Lite JSON Specification
{
"$schema": "https://vega.github.io/schema/vega-lite/v2.json",
"data": { "url": "data/population.json"},
"transform": [
{"filter": "datum.year == 2000"},
{"calculate": "datum.sex == 2 ? 'Female' : 'Male'", "as": "gender"}
],
"mark": "bar",
"encoding": {
"y": {
"aggregate": "sum", "field": "people", "type": "quantitative",
"axis": {"title": "population"},
"stack": "normalize"
},
"x": {
"field": "age", "type": "ordinal",
"scale": {"rangeStep": 17}
},
"color": {
"field": "gender", "type": "nominal",
"scale": {"range": ["#EA98D2", "#659CCA"]}
}
}
}