How can I see the coordinates of any point on the fastline serie on the screen as a tooltip pointing with the cursor?
We need something similar as excel does.
Fastline coordinates on screen
Re: Fastline coordinates on screen
Hello JAV,
I'd suggest you to take a look at the feature demo program that includes several examples of different TeeChart features. Concretely, the demo under "All Features\Welcome !\Tools\Marks tips" shows how to do this.
I'd suggest you to take a look at the feature demo program that includes several examples of different TeeChart features. Concretely, the demo under "All Features\Welcome !\Tools\Marks tips" shows how to do this.
Code: Select all
TChart1.Aspect.View3D = False
TChart1.AddSeries scPoint
TChart1.Series(0).FillSampleValues
TChart1.Tools.Add tcMarksTip
TChart1.Tools.Items(0).asMarksTip.Style = smsXY
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Fastline coordinates on screen
The answer has been helpful to me in part because only visualize the y coordinate, but it was a good guide. I'll check the demo. Thank you very much!