packages feed

hvega-0.11.0.1: tests/specs/config/titleCfg3.vl

{
    "$schema": "https://vega.github.io/schema/vega-lite/v4.json",
    "config": {
        "title": {
            "anchor": "end",
            "dx": -30,
            "dy": 10,
            "lineHeight": 20,
            "subtitleColor": "red",
            "subtitleFont": "serif",
            "subtitleFontSize": 10,
            "subtitleFontStyle": "italic",
            "subtitleFontWeight": 900,
            "subtitleLineHeight": 18,
            "subtitlePadding": 60
        }
    },
    "data": {
        "url": "https://vega.github.io/vega-lite/data/cars.json"
    },
    "encoding": {
        "x": {
            "field": "Horsepower",
            "type": "quantitative"
        },
        "y": {
            "field": "Miles_per_Gallon",
            "type": "quantitative"
        }
    },
    "height": 200,
    "mark": "circle",
    "title": {
        "subtitle": [
            "A subtitle",
            "also over two lines"
        ],
        "text": [
            "Car",
            "Scatter"
        ]
    },
    "width": 200
}