Fastline coordinates on screen

TeeChart for ActiveX, COM and ASP
Post Reply
JAV
Newbie
Newbie
Posts: 65
Joined: Thu May 12, 2011 12:00 am

Fastline coordinates on screen

Post by JAV » Mon May 23, 2011 4:30 pm

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.

Yeray
Site Admin
Site Admin
Posts: 9602
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: Fastline coordinates on screen

Post by Yeray » Tue May 24, 2011 10:55 am

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.

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,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

JAV
Newbie
Newbie
Posts: 65
Joined: Thu May 12, 2011 12:00 am

Re: Fastline coordinates on screen

Post by JAV » Wed May 25, 2011 5:43 pm

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! :)

Post Reply