Get the interactive line values #146
Answered
by
highfestiva
flvribeiro
asked this question in
Q&A
-
Hi, How to get the p0/p1 values from interactive line after move it on chart? set:
get:
seems that the update function doesn`t changes the item datasource, am I right?
|
Beta Was this translation helpful? Give feedback.
Answered by
highfestiva
Mar 22, 2021
Replies: 2 comments
-
That's correct, this is part of pyqtgraph internals. Something like this might get you on the right track: for handle in line.handles:
print(handle['pos']) |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
flvribeiro
-
Got it... get: tks!! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
That's correct, this is part of pyqtgraph internals. Something like this might get you on the right track: