Billing/GraphEntry: Use 73 Oe as MinX for gebunden graph

This commit is contained in:
2024-01-20 12:27:01 +01:00
parent 491c41b239
commit 21cc20ee63
2 changed files with 3 additions and 3 deletions

View File

@ -35,7 +35,7 @@ namespace Elwig.Helpers.Billing {
this(id, curve.Mode, minX, maxX) {
DataGraph = new Graph(curve.Normal, minX, maxX);
if (curve.Gebunden != null)
GebundenGraph = new Graph(curve.Gebunden, minX, maxX);
GebundenGraph = new Graph(curve.Gebunden, 73, maxX);
Contracts = contracts;
}

View File

@ -281,9 +281,9 @@ namespace Elwig.Windows {
}
private void ShowGradationLines() {
OechslePricePlot.Plot.AddVerticalLine(68, Color.Red, 2, label: "68 °Oe (LDW)");
OechslePricePlot.Plot.AddVerticalLine(68, Color.Red, 2, label: "68 °Oe (LDW)");
OechslePricePlot.Plot.AddVerticalLine(73, Color.Orange, 2, label: "73 °Oe (QUW)");
OechslePricePlot.Plot.AddVerticalLine(84, Color.Green, 2, label: "84 °Oe (KAB)");
OechslePricePlot.Plot.AddVerticalLine(84, Color.Green, 2, label: "84 °Oe (KAB)");
}
private void HideGradationLines() {