Last active
October 31, 2017 21:34
-
-
Save imlucas/95234dee6ffeef6b20203d72d288a4db to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$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