Skip to content

Instantly share code, notes, and snippets.

@GitNoise
Created March 30, 2023 07:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GitNoise/06c345f6fd61127781e285a227243f4c to your computer and use it in GitHub Desktop.
Save GitNoise/06c345f6fd61127781e285a227243f4c to your computer and use it in GitHub Desktop.
Line chart w. gradient
{
"$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": "line",
"color": {
"x1": 1,
"y1": 1,
"x2": 1,
"y2": 0,
"gradient": "linear",
"stops": [
{
"offset": 0,
"color": "red"
},
{
"offset": 0.5,
"color": "red"
},
{
"offset": 0.5,
"color": "blue"
},
{
"offset": 1,
"color": "blue"
}
]
}
},
"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