This commit is contained in:
xyy
2026-03-25 21:19:50 +08:00
parent aa4f3e1f4c
commit fe2332d56d
4 changed files with 151 additions and 6 deletions

View File

@@ -95,6 +95,26 @@ namespace PLCDataMonitor
reportSheet.Cells[4, col].Style.Border.Right.Style = ExcelBorderStyle.Thin;
}
reportSheet.Row(4).Height = 25;
// ========== 处理曲线数据,过滤暂停段 ==========
var mainWindow = (MainWindow)Application.Current.MainWindow;
@@ -296,6 +316,24 @@ namespace PLCDataMonitor
curveSheet.Row(1).Height = 25;
// 写入过滤后的数据和重建的时间轴
int dataRow = 2;
for (int i = 0; i < filteredData.Count; i++)
{