From 1932303ea7470068ede4f0aeb07cb34e0ef9f1de Mon Sep 17 00:00:00 2001 From: Floppyrj45 Date: Fri, 24 Apr 2026 21:09:44 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20viewer=20=E2=80=94=20axe=20Y=20chart=20m?= =?UTF-8?q?in=3D0,=20viewer=2055vh?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- viz/static/js/scene.js | 1 + viz/static/trajectory.html | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/viz/static/js/scene.js b/viz/static/js/scene.js index 000bb5e..6468c69 100644 --- a/viz/static/js/scene.js +++ b/viz/static/js/scene.js @@ -191,6 +191,7 @@ fetch('/api/trajectory') grid: { color: '#111' }, }, y: { + suggestedMin: 0, title: { display: true, text: 'm', color: '#445' }, ticks: { color: '#445', font: { size: 9 } }, grid: { color: '#111' }, diff --git a/viz/static/trajectory.html b/viz/static/trajectory.html index aa400ab..0026bc1 100644 --- a/viz/static/trajectory.html +++ b/viz/static/trajectory.html @@ -8,7 +8,7 @@ body { background: #06060f; color: #ccc; font-family: 'Courier New', monospace; display: flex; flex-direction: column; height: 100vh; overflow: hidden; } - #viewer { position: relative; flex: 0 0 62vh; } + #viewer { position: relative; flex: 0 0 55vh; } #viewer canvas { display: block; width: 100% !important; height: 100% !important; } #legend {