Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i am new to iphone developement. can anyone tell me how can i get X,Y values of touched point in CPScatterPlot. i am able to get its plotSymbol value but not getting values of other point's XY values in line chart.thanks in advance..

share|improve this question
are getting the ans or not shreya.. – Ankit Makwana Sep 11 '12 at 10:44

1 Answer

You can set a delegate on the plot space to get the touch events. The plot space class provides methods to convert between device and data coordinates.

share|improve this answer
thanks for the reply.but delegates methods give coordinates values(CGPoints) of graph not of X and Y axis that i have set in the graph.can u give me an example to make it more clear. – shreya May 20 '11 at 5:52
hi.thanks Eric.finally i am getting X and Y axis values at touched point in plot space. but now i want to get coordinates of line that is joining two plot symbols.how can i get it? thanks. – shreya May 21 '11 at 4:37
You'll have to scan through your data and calculate that yourself. If the data is sorted, it's not hard to figure out which pair of points the touched point is between. – Eric Skroch May 22 '11 at 11:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.