Module

x/vega_lite/examples/specs/selection_toggle_altKey_shiftKey.vl.json

A concise grammar of interactive graphics, built on Vega.
Latest
File
{ "$schema": "https://vega.github.io/schema/vega-lite/v4.json", "data": {"url": "data/cars.json"}, "selection": { "paintbrush": { "type": "multi", "toggle": "event.altKey && event.shiftKey" } }, "mark": "circle", "encoding": { "x": {"field": "Horsepower", "type": "quantitative"}, "y": {"field": "Miles_per_Gallon", "type": "quantitative"}, "color": { "condition": { "selection": "paintbrush", "field": "Cylinders", "type": "ordinal" }, "value": "grey" }, "size": {"value": 75} }}