How to clear the dot line?

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
wwp3321
Newbie
Newbie
Posts: 60
Joined: Wed Jul 02, 2003 4:00 am

How to clear the dot line?

Post by wwp3321 » Fri Nov 14, 2008 12:36 am

How could I clear the dot lines in the following picture?
Now the labels style is "Auto",If I change the labels style to "None",the dot lines are cleared,but the labels at BottomAxis are also cleared.
I just want to clear the dot lines.
Thanks.

[img]
http://img1.freep.cn/p.aspx?u=v20_img1_ ... 103843.jpg
[/img]

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

Hi!

Post by Sandra » Fri Nov 14, 2008 9:57 am

Hello wwp3321,

You can hide Axes grid lines like this, for example:

Code: Select all

        Chart1.Axes.Bottom.Grid.Visible:=False;
        Chart1.Axes.Left.Grid.Visible:=False;

Best Regards,

Sandra.

wwp3321
Newbie
Newbie
Posts: 60
Joined: Wed Jul 02, 2003 4:00 am

Post by wwp3321 » Fri Nov 14, 2008 11:22 am

Thank you very much!

Post Reply