Skip to content

Instantly share code, notes, and snippets.

@PBI-DataVizzle
Created November 18, 2024 18:36
Show Gist options
  • Select an option

  • Save PBI-DataVizzle/4c628a492193f19f62a7694f435f958f to your computer and use it in GitHub Desktop.

Select an option

Save PBI-DataVizzle/4c628a492193f19f62a7694f435f958f to your computer and use it in GitHub Desktop.
steam_graph_double_click
{
"$schema": "https://vega.github.io/schema/vega-lite/v5.json",
"width": 300,
"height": 200,
"data": {"url": "data/unemployment-across-industries.json"},
"mark": "area",
"params": [
{
"name": "industry",
"select": {"type": "point", "fields": ["series"]},
"bind": {"legend": "dblclick"}
}
],
"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": "category20b"}},
"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