From 0a32bfad78ff6e9cefed133dc27722a46a1fb4c9 Mon Sep 17 00:00:00 2001 From: Sakurasan <26715255+Sakurasan@users.noreply.github.com> Date: Mon, 10 Aug 2026 23:53:47 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E9=A2=98=E6=9D=90=E5=B0=8F=E7=90=83?= =?UTF-8?q?=E6=95=B4=E4=BD=93=E6=94=BE=E5=A4=A7(=E5=8D=8A=E5=BE=84=206~30)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude --- src/routes/hot-map.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/routes/hot-map.tsx b/src/routes/hot-map.tsx index 26f7e48..dafb1fc 100644 --- a/src/routes/hot-map.tsx +++ b/src/routes/hot-map.tsx @@ -36,8 +36,8 @@ const MODES: { key: 1 | 4; label: string }[] = [ const MAX_STOCK_NODES = 800; /* 题材节点半径范围:按题材涨幅绝对值平方根映射(涨得越猛球越大,小涨幅区分更明显) */ -const THEME_MIN_RADIUS = 4; -const THEME_MAX_RADIUS = 22; +const THEME_MIN_RADIUS = 6; +const THEME_MAX_RADIUS = 30; /* 视图切换:关系图 / 核心股列表 */ type ViewMode = "graph" | "list";