Page 1 of 1

How to clear the dot line?

Posted: Fri Nov 14, 2008 12:36 am
by 8574101
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]

Hi!

Posted: Fri Nov 14, 2008 9:57 am
by 10050769
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.

Posted: Fri Nov 14, 2008 11:22 am
by 8574101
Thank you very much!