Do you have any ideas on how I could get a boolean specifying if a given X value on a series falls on a point?
I've tried using:
Code: Select all
this[channel].XValues[nearestPoint] == xValue
Have you any ideas if this can be done?
Regards
Chris
Code: Select all
this[channel].XValues[nearestPoint] == xValue
Code: Select all
line1.XValues.IndexOf(xValue);
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |