更新 评测前bug修复

This commit is contained in:
dell
2023-03-20 22:54:52 +08:00
parent a3a51fd6e2
commit 02c976e460
28 changed files with 1584 additions and 42 deletions

View File

@ -282,6 +282,8 @@
var series = new Array();
for (var si = 0; si < StaticSelectTagList.length; si++) {
//bool变量取消平滑采取折线
let issmooth = !(StaticSelectTagList[si].Units === 'Y/N')
let seriesdata = {
data: yDataArr[si],
// 曲线名
@ -290,7 +292,7 @@
yAxisIndex: si,
type: 'line',
// 曲线平滑设置
smooth: true
smooth: issmooth
}
series.push(seriesdata);
}