Skip to content

Commit

Permalink
test: add a broken example
Browse files Browse the repository at this point in the history
  • Loading branch information
fandu-db committed Nov 10, 2023
1 parent 2b67c88 commit c3e4467
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"$schema": "https://vega.github.io/schema/vega-lite/v5.json",
"description": "Stock prices of 5 Tech Companies over Time.",
"data": {"url": "data/stocks.csv"},
"mark": {"type": "bar"},
"encoding": {
"x": {"field": "symbol", "type": "nominal"},
"y": {"aggregate": "mean", "field": "price", "type": "quantitative"},
"color": {"timeUnit": "year", "field": "date"}
},
"config": {"bar": {"timeUnitBandPosition": 0}}
}

0 comments on commit c3e4467

Please sign in to comment.