Created
November 18, 2024 18:36
-
-
Save PBI-DataVizzle/4c628a492193f19f62a7694f435f958f to your computer and use it in GitHub Desktop.
steam_graph_double_click
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$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