vega(
{
$schema: "https://vega.github.io/schema/vega-lite/v4.json",
height: 750,
width: 1000,
title: "Total face value of coins minted (cents)",
data: {
values: coinminting
},
mark: { type: "bar", tooltip: true },
encoding: {
y: {
field: "TotalValue",
type: "quantitative",
axis: { grid: false, title: "Total Value in Cents" }
},
x: {
field: "Year",
type: "ordinal",
axis: { labelAngle: -90, labelFontSize: 9, grid: false }
},
color: {
field: "Coin",
sort: "-y",
type: "nominal"
},
shape: {
}
}
},
{ theme: "carbong90" }
)