Hello,
I need to display the mark that is associated with the point that the mouse pointer is closest to, some time ago I was instructed to use the OnGetMarkText event and this was working ok but I realised that now with version 2017.23.171221 it does not behave correctly. Attached is a sample application, the Label1 caption get the series label value but it looks like the ValueIndex in the OnGetMarkText is fired with a step, I mean for index 1, 9, 18 etc. Am I doing something wrong here?
Regards
OnGetMarkText issue
OnGetMarkText issue
- Attachments
-
- Unit1.zip
- (5.98 KiB) Downloaded 983 times
Re: OnGetMarkText issue
Hello,
Try setting this:
Try setting this:
Code: Select all
Chart2.Series[0].Marks.Automatic.Move:=false;
Chart2.Series[0].CalcVisiblePoints:=False;
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: OnGetMarkText issue
Works like a charm, thank you!!!