I am drawing a plot with pyqtgraph:
wave = pg.PlotWidget(self, QtGui.QColor(0, 0, 0, 0))
wave.plot([1,2,3], [1,2,1], pen=(0,0,255), fillLevel=-0, brush=(255,215,0))
I'd like to get the pixel coordinates of the last point (3,1)
How can I do that?