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.
Marks
Re: Marks
Hello n84_All,
I suggest you do next to achieve aspect you want give to your marks:
-Angle
-FontSize
-FontColor
-Position
BackgroundColor to Transparent or just no color
the border to Invisible (I really just want the text printed).
I hope will helps.
Thanks,
I suggest you do next to achieve aspect you want give to your marks:
-Angle
Code: Select all
TChart1.Series(0).Marks.Angle = 90
Code: Select all
TChart1.Series(0).Marks.Font.Size = 14
Code: Select all
TChart1.Series(0).Marks.Color = vbRed
Code: Select all
TChart1.Series(0).Marks.Positions.Position(0).Custom = True
Code: Select all
TChart1.Series(0).Marks.Transparent = True
Code: Select all
TChart1.Series(0).Marks.Frame.Visible = False
Thanks,
Best Regards,
Sandra Pazos / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |