Skip to content
Snippets Groups Projects
singleview_18_line-trellis.vl.json 496 B
Newer Older
Danyel Fisher's avatar
Danyel Fisher committed
{
  "$schema": "https://vega.github.io/schema/vega-lite/v2.json",
  "config": {"background":"#ffffff"},     
  "width": 600,
  "height": 100,
Danyel Fisher's avatar
Danyel Fisher committed
  "data": {"url": "data/complaints.csv", "format": {"type": "csv"}},
  "mark": "line",
  "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
    "row": {"field": "Product", "type": "nominal"}
  }
}