Skip to content
Snippets Groups Projects
singleview_6_18_area-stacked.vl.json 465 B
Newer Older
Danyel Fisher's avatar
Danyel Fisher committed
{
  "$schema": "https://vega.github.io/schema/vega-lite/v2.json",
  "config": {"background":"#ffffff"},     
  "data": {"url": "data/complaints.csv", "format": {"type": "csv"}},
  "mark": "area",
  "encoding": {
    "x": {
      "timeUnit": "yearmonth", "field": "Date received", "type": "temporal",
      "axis": {"title": "Date Received"}
    },
    "y": { "aggregate": "count", "type": "quantitative"},
Danyel Fisher's avatar
Danyel Fisher committed
    "color": {"field": "Product", "type": "nominal"}
  }
}