Commit 9af4027a authored by Mathias Chouet's avatar Mathias Chouet :spaghetti:
Browse files

Fix bug in CourbeRemous chart

Showing with 4 additions and 4 deletions
+4 -4
......@@ -441,7 +441,7 @@ export class RemousResultsComponent extends ResultsComponent implements DoCheck
}
const x = itX.next();
if (r.getValue("tor") !== undefined) {
maxXtor = x;
maxXtor = x.value;
break;
}
}
......@@ -550,17 +550,17 @@ export class RemousResultsComponent extends ResultsComponent implements DoCheck
const x = itX.next().value;
const yExtra = re.getValue(this._remousResults.extraParamSymbol);
if (yExtra !== undefined) {
lineExtra.mapPoint(x, yExtra);
lineExtra.setPoint(x, yExtra);
}
const yFlu = re.getValue("flu");
if (yFlu !== undefined) {
lineFlu.mapPoint(x, yFlu);
lineFlu.setPoint(x, yFlu);
}
const yTor = re.getValue("tor");
if (yTor !== undefined) {
lineTor.mapPoint(x, yTor);
lineTor.setPoint(x, yTor);
}
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment