Module

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

A concise grammar of interactive graphics, built on Vega.
Latest
File
{ "$schema": "https://vega.github.io/schema/vega-lite/v4.json", "layer": [ { "data": {"url": "data/cars.json"}, "mark": "line", "encoding": { "x": {"field": "Cylinders", "type": "ordinal"}, "y": { "aggregate": "max", "field": "Horsepower", "type": "quantitative" }, "color": {"value": "darkred"} } }, { "data": {"url": "data/cars.json"}, "mark": "line", "encoding": { "x": {"field": "Cylinders", "type": "ordinal"}, "y": { "aggregate": "min", "field": "Horsepower", "type": "quantitative" } } } ], "config": { "line": {"point": true} }}