no message

main
853931625@qq.com 2026-05-15 09:04:32 +08:00
parent cb2c854c1a
commit a1c8d2f1d6
1 changed files with 2 additions and 2 deletions

View File

@ -78,7 +78,7 @@ function RealtimeModal(props) {
xAxis: { xAxis: {
type: "category", type: "category",
boundaryGap: false, boundaryGap: false,
data: data.map(item => item.time), data: data.map(item => item.alarmTime),
axisLabel: { axisLabel: {
hideOverlap: true, hideOverlap: true,
}, },
@ -94,7 +94,7 @@ function RealtimeModal(props) {
type: "line", type: "line",
smooth: true, smooth: true,
showSymbol: false, showSymbol: false,
data: data.map(item => item.value), data: data.map(item => item.currentValue),
lineStyle: { lineStyle: {
width: 2, width: 2,
}, },