viewof chart = AdjacentChart({
title: `Semantic India and Pakistan Markets`,
subtitle: "via Polymarket markets",
data: markets,
seriesNames: Object.keys(markets[0]).filter((key) => key !== "date"),
seriesColors: ["#E63946", "#1D3557", "#2A9D8F", "#F4A261"],
xAxis: { field: "date", label: "Date", format: "%b %d" },
yAxis: { label: "Probability (%)", domain: [0, 100] },
width: width,
aspectRatio: 0.625,
showLegend: true,
showWatermark: true,
showEndLabels: true,
showDots: false,
showGrid: true
})