From 87003c573f7b91fe65d567e77883ff9db6e189c1 Mon Sep 17 00:00:00 2001 From: Unknown Date: Mon, 11 Dec 2017 03:16:00 -0500 Subject: [PATCH] Fix potentiometry plot limits. --- dstat_interface/core/experiments/pot.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dstat_interface/core/experiments/pot.py b/dstat_interface/core/experiments/pot.py index fa9b4be..0f5971c 100644 --- a/dstat_interface/core/experiments/pot.py +++ b/dstat_interface/core/experiments/pot.py @@ -42,6 +42,8 @@ class PotExp(Experiment): 'xlims': (0, int(self.parameters['time'])) } } + self.plots[-1].setlims('voltage_time', **self.plotlims['voltage_time']) + self.total_time = int(self.parameters['time']) self.commands += "E" -- GitLab