Skip to content

Instantly share code, notes, and snippets.

@declann
Created September 10, 2024 11:30
Show Gist options
  • Save declann/3a39052eb1e9dac863b28d46c0bede04 to your computer and use it in GitHub Desktop.
Save declann/3a39052eb1e9dac863b28d46c0bede04 to your computer and use it in GitHub Desktop.
Vega-Lite spec from Tue Sep 10 2024
{
"$schema": "https://vega.github.io/schema/vega-lite/v5.json",
"description": "Google's stock price over time.",
"data": {"url": "data/stocks.csv"},
"transform": [{"filter": "datum.symbol==='GOOG'"}],
"mark": {
"type": "area",
"line": {"color": "darkgreen"},
"fill": {
"x1": 0.1,
"y1": 1,
"x2": 1,
"y2": 0,
"gradient": "linear",
"stops": [
{"offset": 0, "color": "white"},
{"offset": 0.1, "color": "darkgreen"},
{"offset": 0.2, "color": "white"},
{"offset": 0.3, "color": "darkgreen"},
{"offset": 0.4, "color": "white"},
{"offset": 0.5, "color": "darkgreen"},
{"offset": 0.6, "color": "white"},
{"offset": 0.7, "color": "darkgreen"},
{"offset": 0.8, "color": "white"},
{"offset": 0.9, "color": "darkgreen"}
]
}
},
"encoding": {
"x": {"field": "date", "type": "temporal"},
"y": {"field": "price", "type": "quantitative"}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment