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]
How to clear the dot line?
Hi!
Hello wwp3321,
You can hide Axes grid lines like this, for example:
Best Regards,
Sandra.
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.