{ "$schema": "https://vega.github.io/schema/vega-lite/v4.json", "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": { "anchor": "end", "dx": -30, "dy": 10, "lineHeight": 20, "subtitle": [ "A subtitle", "also over two lines" ], "subtitleColor": "red", "subtitleFont": "serif", "subtitleFontSize": 10, "subtitleFontStyle": "italic", "subtitleFontWeight": 900, "subtitleLineHeight": 18, "subtitlePadding": 60, "text": [ "Car", "Scatter" ] }, "width": 200 }