{ "$schema": "https://vega.github.io/schema/vega-lite/v4.json", "data": { "url": "https://vega.github.io/vega-lite/data/stocks.csv" }, "description": "Stock prices of five tech companies over time double encoding price with vertical position and line thickness.", "encoding": { "color": { "field": "symbol", "type": "nominal" }, "size": { "field": "price", "type": "quantitative" }, "x": { "axis": { "format": "%Y" }, "field": "date", "type": "temporal" }, "y": { "field": "price", "type": "quantitative" } }, "mark": "trail" }