Trade balance

Difference between US exports to and imports from the UK, with areas colored by sign.

<Plot grid>
    <DifferenceY
        data={trade}
        x="Year"
        y1="Imports"
        y2="Exports"
        curve="basis"
        opacity={0.3}
        positiveFill="var(--svp-blue)"
        negativeFill="var(--svp-red)" />
    <Line
        data={trade}
        x="Year"
        y="Imports"
        stroke="var(--svp-red)"
        curve="basis" />
    <Line
        data={trade}
        x="Year"
        y="Exports"
        stroke="var(--svp-blue)"
        curve="basis" />
</Plot>
Improve this page
Last update at: 2025/11/24