fix: hide probability bands on temperature chart

This commit is contained in:
2569718930@qq.com
2026-06-06 18:00:28 +08:00
parent 89f77b8db4
commit c2f9bc5994
6 changed files with 21 additions and 104 deletions
@@ -2168,7 +2168,9 @@ function buildFullDayChartData(
return point;
});
const probabilityOverlay = buildLegacyGaussianProbabilityOverlay(row, hourly);
// Keep probability data in the payload for market views, but do not draw
// legacy Gaussian bands on the live temperature chart.
const probabilityOverlay = null;
return { data, series, probabilityOverlay };
}