aboutsummaryrefslogtreecommitdiff
path: root/qolab
diff options
context:
space:
mode:
Diffstat (limited to 'qolab')
-rw-r--r--qolab/data/trace.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/qolab/data/trace.py b/qolab/data/trace.py
index 107caae..65373e5 100644
--- a/qolab/data/trace.py
+++ b/qolab/data/trace.py
@@ -92,11 +92,10 @@ class TraceSetSameX(Trace):
else:
plt.subplot(nplots, 1, cnt, sharex=ax1)
plt.plot(self.x.values, tr.values, label=k)
- plt.xlabel(f"{self.x.config['label']} ({self.x.config['unit']})")
plt.ylabel(f"{tr.config['label']} ({tr.config['unit']})")
plt.legend()
plt.grid()
- # plt.plot(self.x.values, tr.values, label=tr.label)
+ plt.xlabel(f"{self.x.config['label']} ({self.x.config['unit']})")
def items(self):
return (self.traces.items())