Rework plot point processing for dmg over time graph the same way

This commit is contained in:
DarkPhoenix
2019-05-18 11:15:27 +03:00
parent 9b2d5410d6
commit 2f8701b4b2
3 changed files with 39 additions and 16 deletions

View File

@@ -40,8 +40,8 @@ class FitDmgVsTimeGraph(Graph):
@property
def yDefs(self):
return OrderedDict([
('dps', YDef(switchLabel='DPS', axisLabel='DPS', eosGraph='eosGraphDps')),
('damage', YDef(switchLabel='Damage inflicted', axisLabel='Damage', eosGraph='eosGraphDmg'))])
('damage', YDef(switchLabel='Damage inflicted', axisLabel='Damage', eosGraph='eosGraphDmg')),
('dps', YDef(switchLabel='DPS', axisLabel='DPS', eosGraph='eosGraphDps'))])
FitDmgVsTimeGraph.register()