Marks

TeeChart for ActiveX, COM and ASP
Post Reply
n84_All
Newbie
Newbie
Posts: 8
Joined: Wed Dec 14, 2011 12:00 am

Marks

Post by n84_All » Wed Jan 09, 2013 10:38 pm

Hi,

About the VB API regarding Marks. How do I change the:
-Angle
-FontSize
-FontColor
-Position
-BackgroundColor to Transparent or just no color, and the border to Invisible (I really just want the text printed).

Thank you.

Sandra
Site Admin
Site Admin
Posts: 3132
Joined: Fri Nov 07, 2008 12:00 am

Re: Marks

Post by Sandra » Thu Jan 10, 2013 10:04 am

Hello n84_All,

I suggest you do next to achieve aspect you want give to your marks:
-Angle

Code: Select all

TChart1.Series(0).Marks.Angle = 90
-FontSize

Code: Select all

TChart1.Series(0).Marks.Font.Size = 14
-FontColor

Code: Select all

TChart1.Series(0).Marks.Color = vbRed
-Position

Code: Select all

TChart1.Series(0).Marks.Positions.Position(0).Custom = True
BackgroundColor to Transparent or just no color

Code: Select all

TChart1.Series(0).Marks.Transparent = True
the border to Invisible (I really just want the text printed).

Code: Select all

TChart1.Series(0).Marks.Frame.Visible = False
I hope will helps.

Thanks,
Best Regards,
Sandra Pazos / 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