spec = ({
$schema: "https://vega.github.io/schema/vega-lite/v5.json",
data: {
values: [
{ a: "A", b: 28 },
{ a: "A", b: 55 }
]
},
mark: {
opacity: 0.5,
type: "bar"
},
encoding: {
x: { field: "a", type: "nominal" },
y: { field: "b", type: "quantitative" }
}
})