Streams refactoring

This commit is contained in:
Michael Schimmel
2026-01-25 02:42:30 +01:00
parent 76c3ad9835
commit 19cdb2f004
+6 -2
View File
@@ -275,8 +275,12 @@ begin
for j := 0 to High(AConfig[i]) do for j := 0 to High(AConfig[i]) do
begin begin
// Extract the specific column series // Extract the specific column series
FSourceSeries[n] := ASources[i].Series.Fields[AConfig[i][j].Key]; var m := ASources[i].Series.IndexOf(AConfig[i][j].Key);
inc(n); if m >= 0 then
begin
FSourceSeries[n] := ASources[i].Series[m];
inc(n);
end;
end; end;
end; end;
end; end;