diff --git a/pyrelacs/ui/plots/continously.py b/pyrelacs/ui/plots/continously.py
index 9d8b427..a1ad9c9 100644
--- a/pyrelacs/ui/plots/continously.py
+++ b/pyrelacs/ui/plots/continously.py
@@ -36,7 +36,7 @@ class Continously:
 
         # self.plot_index = 0
         self.timer = QTimer()
-        self.CHUNK_PLOT = 500
+        self.CHUNK_PLOT = int(self.buffer.samplerate / 6)
         self.PLOT_HISTORY = 500_000  # The amount of data you want to keep on screen
         self.last_plotted_index = 0
         self.timer.setInterval(150)