Make sure to include all Y-values

This commit is contained in:
DarkPhoenix
2019-05-12 05:54:03 +03:00
parent bd5710c676
commit 2320c3cb57
3 changed files with 12 additions and 4 deletions

View File

@@ -33,7 +33,7 @@ class FitDmgTimeGraph(Graph):
def __init__(self):
Graph.__init__(self)
self.defaults["time"] = "0-300"
self.defaults["time"] = "0-80"
self.name = "Damage over time"
self.fitDmgTime = None
self.mainFrame = gui.mainFrame.MainFrame.getInstance()
@@ -76,7 +76,6 @@ class FitDmgTimeGraph(Graph):
for point, val in fitDmgTime.getIterator():
x.append(point[variable])
y.append(val)
return x, y

View File

@@ -33,7 +33,7 @@ class FitDpsTimeGraph(Graph):
def __init__(self):
Graph.__init__(self)
self.defaults["time"] = "0-300"
self.defaults["time"] = "0-80"
self.name = "DPS over time"
self.fitDpsTime = None
self.mainFrame = gui.mainFrame.MainFrame.getInstance()