Focus + Context - Smooth Histogram Zooming
View this example in the online editor
Vega-Lite JSON Specification
{
"$schema": "https://vega.github.io/schema/vega-lite/v5.json",
"data": {
"url": "data/flights-5k.json",
"format": {"parse": {"date": "date"}}
},
"transform": [{"calculate": "hours(datum.date) + minutes(datum.date) / 60", "as": "time"}],
"vconcat": [{
"width": 963,
"height": 100,
"params": [{
"name": "brush",
"select": {"type": "interval", "encodings": ["x"]}
}],
"mark": "bar",
"encoding": {
"x": {"field": "time", "bin": {"maxbins": 30}},
"y": {"aggregate": "count"}
}
}, {
"width": 963,
"height": 100,
"mark": "bar",
"encoding": {
"x": {
"field": "time",
"bin": {"maxbins": 30, "extent": {"param": "brush"}}
},
"y": {"aggregate": "count"}
}
}]
}