Annotation.Callout pointer style How to ?

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
Craigr
Newbie
Newbie
Posts: 4
Joined: Tue Aug 31, 2004 4:00 am
Contact:

Annotation.Callout pointer style How to ?

Post by Craigr » Fri Feb 17, 2006 3:05 pm

Thanks for your Help!

I can not figure out how to change the style of pointer on an annotiaon.Callout ?

i.e. Star,Square,Cross,Diagonal ect.

Also can I change the color of the style ?

Craig R

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

Post by Narcís » Fri Feb 17, 2006 4:19 pm

Hi Craig R,

Yes, you can do something like:

Code: Select all

            annotation1.Callout.Arrow.Visible = true;
            annotation1.Callout.XPosition = 100;
            annotation1.Callout.YPosition = 100;
            annotation1.Callout.Visible = true;
            annotation1.Callout.Style = Steema.TeeChart.Styles.PointerStyles.Circle;
            annotation1.Callout.Color = Color.Red;
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