{ "$schema": "https://vega.github.io/schema/vega-lite/v4.json", "data": { "url": "https://vega.github.io/vega-lite/data/cars.json" }, "encoding": { "color": { "field": "Origin", "legend": { "cornerRadius": 5, "fillColor": "pink", "labelAlign": "right", "labelBaseline": "top", "labelColor": "fireBrick", "labelExpr": "'<' + datum.label + '>'", "labelFontSize": 20, "labelFontWeight": 600, "labelOpacity": 0.6, "labelOverlap": "greedy", "padding": 30, "rowPadding": 15, "strokeColor": "orange", "symbolLimit": 5, "symbolStrokeColor": null, "symbolStrokeWidth": 1, "titlePadding": 20 }, "type": "nominal" }, "opacity": { "field": "Weight_in_lbs", "legend": { "cornerRadius": 5, "fillColor": "pink", "labelAlign": "right", "labelBaseline": "top", "labelColor": "fireBrick", "labelExpr": "'<' + datum.label + '>'", "labelFontSize": 20, "labelFontWeight": 600, "labelOpacity": 0.6, "labelOverlap": "greedy", "padding": 30, "rowPadding": 15, "strokeColor": "orange", "symbolLimit": 5, "symbolStrokeColor": null, "symbolStrokeWidth": 1, "titlePadding": 20 }, "type": "quantitative" }, "size": { "field": "Horsepower", "legend": { "cornerRadius": 5, "fillColor": "pink", "labelAlign": "right", "labelBaseline": "top", "labelColor": "fireBrick", "labelExpr": "'<' + datum.label + '>'", "labelFontSize": 20, "labelFontWeight": 600, "labelOpacity": 0.6, "labelOverlap": "greedy", "padding": 30, "rowPadding": 15, "strokeColor": "orange", "symbolLimit": 5, "symbolStrokeColor": null, "symbolStrokeWidth": 1, "titlePadding": 20 }, "type": "quantitative" }, "x": { "field": "Horsepower", "type": "quantitative" }, "y": { "field": "Miles_per_Gallon", "type": "quantitative" } }, "height": 300, "mark": "circle", "width": 300 }