Hello, 

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



I want to also have a code that displays the plot points

-- 
You received this message because you are subscribed to the Google Groups 
"pyqtgraph" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/pyqtgraph/ba41cc63-85a1-4d5e-bea8-f4725910ca30%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to