packages feed

hvega-0.12.0.7: tests/specs/position/position6.vl

{
    "$schema": "https://vega.github.io/schema/vega-lite/v4.json",
    "data": {
        "values": [
            {
                "cat": 1,
                "empty": 0,
                "val": 10
            },
            {
                "cat": 2,
                "val": 20
            },
            {
                "cat": 3,
                "val": 30
            },
            {
                "cat": 4,
                "val": 15
            },
            {
                "cat": 5,
                "val": 12
            }
        ]
    },
    "encoding": {
        "x": {
            "field": "cat",
            "type": "ordinal"
        },
        "y": {
            "field": "val",
            "type": "quantitative"
        }
    },
    "mark": {
        "type": "bar",
        "width": 20
    },
    "width": 300
}