From d73fd32b42d5f8f620d1e653e8fc9e72e05de16d Mon Sep 17 00:00:00 2001 From: tsi-billypom Date: Tue, 25 Mar 2025 16:52:16 -0400 Subject: [PATCH] plot widget log mode x and y please workkkk --- main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/main.py b/main.py index a321ab5..376b74d 100644 --- a/main.py +++ b/main.py @@ -392,6 +392,7 @@ class ApplicationWindow(QMainWindow, Ui_MainWindow): self.clear_audio_visualization() y = self.audio_visualizer.get_amplitudes() x = [i for i in range(len(y))] + self.PlotWidget.setLogMode(True, True) self.PlotWidget.plot(x, y, fillLevel=0, fillBrush=mkBrush("b")) self.PlotWidget.show()