packages feed

hvega-0.12.0.7: tests/specs/gallery/area/area1.vl

{
    "$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 over time (area chart)",
    "encoding": {
        "x": {
            "axis": {
                "format": "%Y"
            },
            "field": "date",
            "timeUnit": "yearmonth",
            "type": "temporal"
        },
        "y": {
            "aggregate": "sum",
            "axis": {
                "title": "Count"
            },
            "field": "count",
            "type": "quantitative"
        }
    },
    "height": 200,
    "mark": "area",
    "width": 300
}