diff --git a/packages/@ourworldindata/grapher/src/captionedChart/CaptionedChart.tsx b/packages/@ourworldindata/grapher/src/captionedChart/CaptionedChart.tsx
index f7c35d7dddd..bb5c5d1bfa8 100644
--- a/packages/@ourworldindata/grapher/src/captionedChart/CaptionedChart.tsx
+++ b/packages/@ourworldindata/grapher/src/captionedChart/CaptionedChart.tsx
@@ -608,7 +608,13 @@ export class StaticCaptionedChart extends CaptionedChart {
targetX={paddedBounds.x}
targetY={paddedBounds.y}
/>
- {this.renderChart()}
+
+ {/*
+ We cannot render a table to svg, but would rather display nothing at all to avoid issues.
+ See https://github.com/owid/owid-grapher/issues/3283
+ */}
+ {this.manager.isOnTableTab ? undefined : this.renderChart()}
+