Skip to content

Instantly share code, notes, and snippets.

@lcyraphael
Created September 24, 2018 12:41
Show Gist options
  • Save lcyraphael/489e930b9ef8c8cec0145b6a7ec5d599 to your computer and use it in GitHub Desktop.
Save lcyraphael/489e930b9ef8c8cec0145b6a7ec5d599 to your computer and use it in GitHub Desktop.
{
"mark": "bar",
"encoding": {
"x": {"field": "index", "type": "nominal"},
"y": {"field": "status", "type": "quantitative"}
},
"$schema": "https://vega.github.io/schema/vega-lite/v2.json",
"width": 450,
"height": 300,
"selection": {
"grid": {
"type": "interval",
"bind": "scales",
"on": "[mousedown, window:mouseup] > window:mousemove!",
"encodings": ["x", "y"],
"translate": "[mousedown, window:mouseup] > window:mousemove!",
"zoom": "wheel!",
"mark": {"fill": "#333", "fillOpacity": 0.125, "stroke": "white"},
"resolve": "global"
}
},
"data": {
"values": [
{"index": "Removed", "status": 151188},
{"index": "Up-to-date", "status": 148331},
{"index": "Linked", "status": 39864},
{"index": "Out-of-date", "status": 10252},
{"index": "Recently registered", "status": 9610}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment