vega({
$schema: "https://vega.github.io/schema/vega-lite/v4.json",
height: 500,
width: 700,
title: {
text: [`Port Throughput - Canada and Select Countries`],
subtitle: ["Years: 2010-2021", `UNCTAD STAT`],
subtitleColor: "f4f4f4"
},
data: {
values: us_contportthroughput_selectcountries
},
mark: { type: "line", tooltip: true },
encoding: {
y: {
field: "Container Units",
type: "quantitative",
axis: { grid: false }
},
x: {
field: "Year",
type: "nominal",
axis: { grid: false }
},
color: {
field: "Country",
type: "nominal",
sort: "-y"
}
}
})