Skip to content

Instantly share code, notes, and snippets.

@PBI-DataVizzle
Created November 18, 2024 18:31
Show Gist options
  • Save PBI-DataVizzle/d303dbcf7f5f91b4bf63e43dc63a47cb to your computer and use it in GitHub Desktop.
Save PBI-DataVizzle/d303dbcf7f5f91b4bf63e43dc63a47cb to your computer and use it in GitHub Desktop.
steam_graph_vl
{
"$schema": "https://vega.github.io/schema/vega-lite/v5.json",
"width": 300,
"height": 200,
"data": {"url": "data/unemployment-across-industries.json"},
"transform": [
{"filter": "datum.series == 'Government' || datum.series == 'Finance'"}
],
"mark": "area",
"params": [
{
"name": "industry",
"select": {"type": "point", "fields": ["series"]},
"bind": "legend"
}
],
"encoding": {
"x": {
"timeUnit": "yearmonth",
"field": "date",
"axis": {"domain": false, "format": "%Y", "tickSize": 0}
},
"y": {
"aggregate": "sum",
"field": "count",
"stack": "center",
"axis": null
},
"color": {"field": "series", "scale": {"scheme": "category20"}},
"opacity": {"condition": {"param": "industry", "value": 1}, "value": 0.2}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment