Series format question.

TeeChart for ActiveX, COM and ASP
Post Reply
TonyVSUK
Advanced
Posts: 163
Joined: Wed Mar 01, 2006 12:00 am

Series format question.

Post by TonyVSUK » Wed Oct 13, 2010 7:10 pm

Hello again,

If you add a line series, then edit the series, click "Marks", then "Arrows", there is a button for "Pointer".

How do I get at that in code?

I know there is Lineseries.GetPointer, but that does not get the pointer for the arrows.

Thanks in advance,

Tony.

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Re: Series format question.

Post by Narcís » Fri Oct 15, 2010 8:18 am

Hi Tony,

This is marks Callout:

Code: Select all

    TChart1.Series(0).Marks.Callout.Visible = True
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

TonyVSUK
Advanced
Posts: 163
Joined: Wed Mar 01, 2006 12:00 am

Re: Series format question.

Post by TonyVSUK » Fri Oct 15, 2010 8:31 am

There doesn't seem to be a "TChart1.Series(0).Marks.Callout.Pointer".

Is there access to this pointer class at all?

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Re: Series format question.

Post by Narcís » Fri Oct 15, 2010 8:42 am

Hi Tony,

Accessing Callout you are already accessing this pointer, for example:

Code: Select all

    TChart1.Series(0).Marks.Callout.Style = psCircle
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

Post Reply