From 989710266b521a3b4d69fe1e36f5a436865fd5d2 Mon Sep 17 00:00:00 2001 From: duwenyuan <15600000461@163.com> Date: Thu, 18 Dec 2025 14:54:08 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=B4=BB=E5=BA=A6=E6=B5=93?= =?UTF-8?q?=E5=BA=A6=E5=AF=B9=E6=AF=94=E5=88=86=E6=9E=90=E8=BF=94=E5=9B=9E?= =?UTF-8?q?=E7=9A=84=E6=95=B0=E6=8D=AE=E7=BB=93=E6=9E=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../org/jeecg/service/impl/SampleStatAnalysisService.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/jeecg-module-data-analyze/src/main/java/org/jeecg/service/impl/SampleStatAnalysisService.java b/jeecg-module-data-analyze/src/main/java/org/jeecg/service/impl/SampleStatAnalysisService.java index 3197642..a0ca737 100644 --- a/jeecg-module-data-analyze/src/main/java/org/jeecg/service/impl/SampleStatAnalysisService.java +++ b/jeecg-module-data-analyze/src/main/java/org/jeecg/service/impl/SampleStatAnalysisService.java @@ -610,11 +610,11 @@ public class SampleStatAnalysisService extends ServiceImpl detectionPoint = new HashMap<>(); + Map detectionPoint = new LinkedHashMap<>(); detectionPoint.put("x", timeStr); detectionPoint.put("y", conc); // 中心值 - detectionPoint.put("low", low); // 下限(可选,方便前端) - detectionPoint.put("high", high); // 上限(可选) + detectionPoint.put("low", err); // 下限(可选,方便前端) + detectionPoint.put("high", err); // 上限(可选) // 或者用: value + error 结构(ECharts 某些系列支持) //detectionPoint.put("value", new double[]{conc, low, high});