Rotate an annotation?

TeeChart for ActiveX, COM and ASP
Post Reply
DTech
Newbie
Newbie
Posts: 15
Joined: Wed Sep 29, 2004 4:00 am
Location: Suwanee, Georgia, USA
Contact:

Rotate an annotation?

Post by DTech » Wed Mar 02, 2005 3:07 pm

Support Staff,

The following code snippet creates an annotation. It would be of great help to me if I could figure out how to rotate the annotation 90 degrees. I've tried everything I can think of. Do you have any thoughts or suggestions?

Thanks, Dean Darsey

Private Sub Form_Load()
Dim AnnoNum As Integer

With TChart1
AnnoNum = .Tools.Add(tcAnnotate)
With .Tools.Items(AnnoNum).asAnnotation
.Shape.Frame.Visible = False
.Shape.Font.Name = "Ariel"
.Shape.Font.Color = vbBlack
.Shape.Font.Size = 8
.Shape.CustomPosition = True
.Shape.Left = TChart1.Canvas.Left + 100
.Shape.Top = TChart1.Canvas.Top + 100
.Text = "This is a test."
End With
End With

End Sub
Thanks, DTech

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

Post by Narcís » Wed Mar 02, 2005 3:34 pm

Hi DTech,

I'm afraid this cannot be done. I've included your request to our wish list to be considered for future releases.
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