Page 1 of 1

Making the grid lines go away (VB)

Posted: Wed Sep 15, 2004 8:35 pm
by 9081031
I want to turn off the gridlines. This shouldn't be a difficult thing. I have wasted 2 hours wandering through the help files.

I would appreciate any help

Thanks.

Posted: Thu Sep 16, 2004 8:29 am
by Pep
Hi,

it's easy <g>, you can do :
TChart1.Axis.Left.GridPen.Visible = False
TChart1.Axis.Bottom.GridPen.Visible = False

Posted: Thu Sep 16, 2004 11:00 pm
by 9081031
Thanks,
I figured it out eventually. Seems like it would be a little more intuitive like
TChart.ShowGridLines = false
Or at least TChart.Series(Index).ShowGridLines = False

Posted: Fri Sep 17, 2004 9:00 am
by Pep
Hi,

yes, but you have to have the possibility to only hide the left or the bottom, not just both.