vegalite(
{
"height": 400,
"width" : 200,
"data": {
"values": countryData,
},
"transform": [
{
"joinaggregate": [{
"op": "sum",
"field": "population",
"as": "TotalPopulation"
}],
"groupby": ["year"],
},
{
"calculate": "datum.population/datum.TotalPopulation",
"as": "Percentage"
}
],
"facet": {
"column": {"field": "year", "type": "nominal", "title": false,
"header": { "labelFontSize": 20, "labelPadding":20 }},
},
"spec": {
"encoding": {
"y": {"field": "population", "type": "quantitative","title": "Population→"},
"order": {"field": "population", "type": "quantitative", "sort": "descending"},
"color": {"field": "country", "type": "nominal",
"sort": [ "United States", "India", "China"],
},
},
"layer": [
{
"mark": {type: "bar", width: 100, tooltip: true},
},
{
transform: [
{
"window": [{"op": "sum", "field": "population", "as": "testsum"}],
"groupby": ["year"],
},
{
"calculate": " datum.testsum - datum.population/2",
"as": "center"
},
],
"mark": {"type": "text", "fontSize": 15},
"encoding": {
"color": {"value": "white"},
"y": {"field": "center", "type": "quantitative", "title": false},
"text": {"field": "Percentage", "type": "quantitative", "format": ".1%"},
"order": {"field": "Percentage", "type": "quantitative", "sort": "descending"},
},
}
],
"view": {"stroke": null},
},
"padding": 30,
"title": {"text": "Populations 1987/1997/2007", "align": "left", "fontSize": 25, "offset": 30},
}
)