{ "$schema": "https://vega.github.io/schema/vega-lite/v4.json", "data": { "url": "https://vega.github.io/vega-lite/data/cars.json" }, "description": "Mouse over individual points or select multiple points with the shift key", "encoding": { "size": { "condition": { "selection": "myPaintbrush", "value": 300 }, "value": 50 }, "x": { "field": "Horsepower", "type": "quantitative" }, "y": { "field": "Miles_per_Gallon", "type": "quantitative" } }, "mark": "point", "selection": { "myPaintbrush": { "nearest": true, "on": "mouseover", "type": "multi" } } }