Published
Edited
Sep 17, 2019
4 forks
12 stars
Insert cell
Insert cell
value = Generators.observe(notify => {
const signaled = (name, value) => notify(value);
chart.addSignalListener("selection1", signaled);
notify(chart.signal("selection1"));
return () => chart.removeSignalListener("selection1", signaled);
})
Insert cell
viewof chart = vegalite({
"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"}
},
"selection": {
"selection1": {
"fields": ["a"],
"on": "mouseover",
"type": "single"
}
}
})
Insert cell
vegalite = require("@observablehq/vega-lite@0.2")
Insert cell

Purpose-built for displays of data

Observable is your go-to platform for exploring data and creating expressive data visualizations. Use reactive JavaScript notebooks for prototyping and a collaborative canvas for visual data exploration and dashboard creation.
Learn more