packages feed

hvega-0.12.0.7: tests/specs/config/breaklinecfg.vl

{
    "$schema": "https://vega.github.io/schema/vega-lite/v4.json",
    "config": {
        "lineBreak": "X"
    },
    "data": {
        "values": [
            {
                "l": "xXx",
                "x": 5,
                "y": 10
            },
            {
                "l": "x x",
                "x": 10,
                "y": 5
            },
            {
                "l": "xxXxXxx",
                "x": 15,
                "y": 30
            }
        ]
    },
    "encoding": {
        "text": {
            "field": "l",
            "type": "nominal"
        },
        "x": {
            "field": "x",
            "type": "quantitative"
        },
        "y": {
            "field": "y",
            "type": "quantitative"
        }
    },
    "mark": "text"
}