I had a question on adding a plotting item. I want to display the point that is being plotted at as label. Is that possible?
I using this ...
p1 = win.addPlot(title="MDP Values")
p1.addLine(y=0)
p2 = win.addPlot(title="Actual Values")
p2.addLine(y=0)
data1 = running_mdp_sum.flatten()[:iternate_num]
data2 = running_actual_sum.flatten()[:iternate_num]
curve1 = p1.plot(
data1, pen=(200, 200, 200), symbol='t', symbolBrush=(255, 0, 0), symbolPen='w', name="Red curve")
p1.setLabel('left', "Values")
curve2 = p2.plot(data2,pen=(0, 0,255), symbolBrush=(255, 0, 0), symbolPen='w', name="Red curve")
ptr1 = 0