Skip to content

Instantly share code, notes, and snippets.

@domoritz
Created August 19, 2019 09:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save domoritz/3ab075a60cf92b8c19eb8a312e7b08b3 to your computer and use it in GitHub Desktop.
Save domoritz/3ab075a60cf92b8c19eb8a312e7b08b3 to your computer and use it in GitHub Desktop.
VL Spec
{
"$schema": "https://vega.github.io/schema/vega-lite/v3.json",
"description": "A simple bar chart with embedded data.",
"width": 360,
"data": {
"values": [
{"a": "A","b": 28}, {"a": "B","b": 55}, {"a": "C","b": 43},
{"a": "D","b": 91}, {"a": "E","b": 81}, {"a": "F","b": 53},
{"a": "G","b": 19}, {"a": "H","b": 87}, {"a": "I","b": 52}
]
},
"mark": "bar",
"encoding": {
"x": {"field": "a", "type": "ordinal"},
"y": {"field": "b", "type": "quantitative"},
"tooltip": {"field": "b", "type": "quantitative"}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment