Vega-Lite for Your Website
Vega-Lite is a declarative grammar for charts and small data visualizations.
It is useful when a page needs a reproducible plot or chart that can be described compactly in text and rendered consistently.
Simple example
{
"$schema": "https://vega.github.io/schema/vega-lite/v5.json",
"data": {"values": [{"category": "A", "value": 28}, {"category": "B", "value": 55}]},
"mark": "bar",
"encoding": {
"x": {"field": "category", "type": "nominal"},
"y": {"field": "value", "type": "quantitative"}
}
}