Page 1 of 1

Marks

Posted: Wed Jan 09, 2013 10:38 pm
by 16661060
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.

Re: Marks

Posted: Thu Jan 10, 2013 10:04 am
by 10050769
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,