diff --git a/qcodes/utils/wrappers.py b/qcodes/utils/wrappers.py index 11c62f24195..3ac7f6d1c15 100644 --- a/qcodes/utils/wrappers.py +++ b/qcodes/utils/wrappers.py @@ -142,6 +142,7 @@ def _create_plot(plot, i, name, data, counter_two, j, k): rasterized = xlen*ylen > 5000 plot.add(inst_meas_data, subplot=j + k + 1, rasterized=rasterized) else: + rasterized = False plot.add(inst_meas_data, subplot=j + k + 1, color=color) plot.subplots[j + k].grid() if j == 0: @@ -196,6 +197,7 @@ def _create_plot(i, name, data, counter_two): rasterized = xlen * ylen > 5000 plot.add(inst_meas_data, rasterized=rasterized) else: + rasterized = False plot.add(inst_meas_data, color=color) plot.subplots[0].grid() if rasterized: