viewof view = embed({
"$schema": "https://vega.github.io/schema/vega-lite/v3.json",
"description": "Google's stock price over time.",
"width": 700,
"data": {"url": "https://raw.githubusercontent.com/vega/vega-datasets/master/data/stocks.csv"},
"transform": [{"filter": "datum.symbol==='GOOG'"}],
"mark": {
"type": "area",
"color": "lightblue",
"interpolate": "step-after",
"line": true
},
"encoding": {
"x": {"field": "date", "type": "temporal"},
"y": {"field": "price", "type": "quantitative"},
"tooltip": [
{"type": "quantitative", "field": "price", "format": "$,"},
{"type": "temporal", "field": "date"}
],
},
"selection": {
"zoom_x": {"type": "interval", "bind": "scales", "encodings": ["x"]}
},
})