I have a graph in an application with pyqt5. The graph is made with pyqtgraph like this:
plotWidget = pg.PlotWidget()
I use it to plot audio signals, but the x-axis marks the labels by default. How can I put other labels different from the ones that pyqtgraph puts?
The following line is the one I use to graph:
elf.curve = self.graphWidget.plot(self.signal)
This is how it shows an audio:

I need is to change the marks of the x axis