Skip to content

Instantly share code, notes, and snippets.

@imlucas
Last active October 31, 2017 21:34
Show Gist options
  • Save imlucas/95234dee6ffeef6b20203d72d288a4db to your computer and use it in GitHub Desktop.
Save imlucas/95234dee6ffeef6b20203d72d288a4db to your computer and use it in GitHub Desktop.
{
"$schema": "https://vega.github.io/schema/vega-lite/v2.json",
"data": {
"url": "data/cars.json",
"format": {
"type": "json"
}
},
"selection": {
"click": {
"type": "single",
"on": "click"
},
"metrics": {
"type": "single",
"bind": {
"input": "text",
"externalref": "click"
}
}
},
"mark": "rect",
"encoding": {
"y": {
"field": "Origin",
"type": "ordinal"
},
"x": {
"field": "Cylinders",
"type": "ordinal"
},
"color": {
"condition": {
"selection": "pts",
"aggregate": "count",
"field": "*",
"type": "quantitative"
},
"value": "grey"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment