aboutsummaryrefslogtreecommitdiff
path: root/qolab/data
diff options
context:
space:
mode:
Diffstat (limited to 'qolab/data')
-rw-r--r--qolab/data/trace.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/qolab/data/trace.py b/qolab/data/trace.py
index 0b0a163..67d9301 100644
--- a/qolab/data/trace.py
+++ b/qolab/data/trace.py
@@ -132,7 +132,7 @@ class Trace:
plt.xlabel('index')
plt.ylabel(f"{self.config['unit']}")
plt.legend()
- plt.grid()
+ plt.grid(True)
def getConfig(self):
d ={}
@@ -194,7 +194,7 @@ class TraceXY(Trace):
plt.xlabel(f"{self.x.config['label']} ({self.x.config['unit']})")
plt.ylabel(f"{self.y.config['label']} ({self.y.config['unit']})")
plt.legend()
- plt.grid()
+ plt.grid(True)
def getConfig(self):
config = {}
@@ -272,7 +272,7 @@ class TraceSetSameX(Trace):
p=axs[cnt].plot(x, tr.values, label=k)
axs[cnt].set_ylabel(f"{tr.config['label']} ({tr.config['unit']})")
axs[cnt].legend()
- axs[cnt].grid()
+ axs[cnt].grid(True)
cnt+=1
plt.xlabel(f"{self.x.config['label']} ({self.x.config['unit']})")