Page 1 of 1

Annotation.Callout pointer style How to ?

Posted: Fri Feb 17, 2006 3:05 pm
by 8728784
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

Posted: Fri Feb 17, 2006 4:19 pm
by narcis
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;