Page 1 of 1
Fastline coordinates on screen
Posted: Mon May 23, 2011 4:30 pm
by 15059326
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.
Re: Fastline coordinates on screen
Posted: Tue May 24, 2011 10:55 am
by yeray
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
Re: Fastline coordinates on screen
Posted: Wed May 25, 2011 5:43 pm
by 15059326
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!
