diff --git a/apps/planner/app/components/ElevationChart.tsx b/apps/planner/app/components/ElevationChart.tsx
index 75b0487..eb1536b 100644
--- a/apps/planner/app/components/ElevationChart.tsx
+++ b/apps/planner/app/components/ElevationChart.tsx
@@ -346,9 +346,9 @@ export function ElevationChart({ yjs, onHover, days }: ElevationChartProps) {
{"15%+"}
>)}
{colorMode === "elevation" && (<>
- {t("elevation.low")}
+ {Math.round(Math.min(...points.map(p => p.elevation)))}m
- {t("elevation.high")}
+ {Math.round(Math.max(...points.map(p => p.elevation)))}m
>)}
{colorMode === "surface" && (
{t("colorMode.surfaceLegend")}