{ "$schema": "https://vega.github.io/schema/vega-lite/v4.json", "data": { "values": [ { "cat": "a", "value": 10 }, { "cat": "b", "value": 5 }, { "cat": "c", "value": 20 }, { "cat": "d", "value": 8 } ] }, "encoding": { "x": { "field": "cat", "type": "nominal" }, "y": { "field": "value", "type": "quantitative" } }, "mark": { "color": { "gradient": "radial", "r1": 0.2, "r2": 0.4, "stops": [ { "color": "red", "offset": 0 }, { "color": "white", "offset": 0.5 }, { "color": "blue", "offset": 1 } ], "x1": 0.2, "x2": 0.8, "y1": 0.7, "y2": 0.3 }, "size": 1000, "type": "circle" }, "width": 200 }