vega({
$schema: "https://vega.github.io/schema/vega-lite/v4.json",
background: "white",
width: 600,
height: 600,
title: {
text: ["Nov./Dec. 2020 Spotify Canada Charts - Top 5 Tracks", ""],
fontSize: 24
},
data: { values: top5data },
mark: {
type: "line",
point: {
filled: true,
size: 60
},
tooltip: true
},
encoding: {
x: {
field: "week",
axis: { title: "Week", labelFontSize: 14, titleFontSize: 16 }
},
y: {
field: "rank",
type: "quantitative",
scale: { reverse: true, domain: [1, 200] },
axis: {
title: "Chart Ranking",
labelFontSize: 14,
titleFontSize: 16
}
},
color: {
field: "Track",
type: "nominal",
legend: {
columns: 2,
orient: "top",
labelFontSize: 12,
title: "Track",
labelLimit: 800,
titleFontSize: 16
}
}
}
})