Page 1 of 1

Symbols...

Posted: Wed Nov 29, 2006 8:02 am
by 8577300
Hello Experts!!

I'm looking for a way how I can show 'Trackmarks' on the timeline (maybe X-Axis)...this Trackmarks are Timemarks which contain the time of the mark. So on build up the chart I want tell the chart that (for e.g. on second 3.6 or 7.2) it have to paint this marks on the X-axis. After that the user can click at the little symbol and the application should do something at this time....

Any ideas??

Bye
Thomas

Posted: Wed Nov 29, 2006 8:56 am
by narcis
Hi Thomas,

If those marks need to have the click feature you could try using an annotation tool for each mark you wish to draw.

Posted: Tue Dec 19, 2006 10:16 am
by 8577300
Hello!!

Can I set a fix size (width, height) of a annotation tool mark??

Bye
Thomas

Posted: Tue Dec 19, 2006 10:39 am
by narcis
Hi Thomas,

Yes, you can do this:

Code: Select all

  ChartTool1.Width:=100;
  ChartTool1.Height:=20;

Posted: Tue Dec 19, 2006 10:47 am
by 8577300
Hello Narcis,

I don't have Width or Height for ChartTools...I'm using TeeChart v6.01...

Bye
Thomas

Posted: Sat Dec 23, 2006 2:45 pm
by Pep
Hi,

this feature (size for TAnnotation tool) was introduced in the TeeChart Pro v7.
In that case the only way I can think of (using v6) would be to generate your custom annotation using the Canvas techniques :
Chart1.Canvas.Rectangle(.....);
Chart1.Cancas.TextOut(....);