packages feed

hvega-0.11.0.1: tests/specs/axis/multiline.vl

{
    "$schema": "https://vega.github.io/schema/vega-lite/v4.json",
    "config": {
        "axis": {
            "labelLineHeight": 20
        },
        "lineBreak": " "
    },
    "data": {
        "url": "https://vega.github.io/vega-lite/data/cars.json"
    },
    "encoding": {
        "color": {
            "field": "Origin",
            "legend": null,
            "type": "nominal"
        },
        "x": {
            "axis": {
                "labelExpr": "datum.label + ' horses'",
                "labelFontSize": 11,
                "labelLineHeight": 22
            },
            "field": "Horsepower",
            "type": "quantitative"
        },
        "y": {
            "axis": {
                "labelExpr": "datum.label+' mpg'",
                "labelFontSize": 22
            },
            "field": "Miles_per_Gallon",
            "type": "quantitative"
        }
    },
    "mark": "point"
}