{ "$schema": "https://vega.github.io/schema/vega-lite/v4.json", "data": { "url": "https://vega.github.io/vega-lite/data/unemployment-across-industries.json" }, "description": "Unemployment across industries as a normalised area chart.", "encoding": { "color": { "field": "series", "scale": { "scheme": "category20b" }, "type": "nominal" }, "x": { "axis": { "domain": false, "format": "%Y" }, "field": "date", "timeUnit": "yearmonth", "type": "temporal" }, "y": { "aggregate": "sum", "axis": null, "field": "count", "stack": "normalize", "type": "quantitative" } }, "height": 200, "mark": "area", "width": 300 }