I want to create a hover/tap effect on the symbol that was tapped, is this possible? Can’t find any documentation anyway indicating that it is?
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can use this delegate method and add an annotation,
Create an annotation and add to graph in this delegate.
For eg:-
Check this for more details. Also check this. Sample code could be there in their demo apps.
Implement the
symbolForScatterPlot:recordIndex:method to customize the plot symbol at each point. Return nil if you don’t want a symbol drawn at the given index. Once the user taps and the above delegate is called, probably you can callreloadDataon plot and return the highlighted plotsymbols here. Check this.