Page 1 of 1

Hide horizontal and vertical lines ?

Posted: Thu Jan 20, 2005 4:02 pm
by 8576839
Hi,

How is it possible to hide horizontal and vertical lines that are drown by default under a chart ?

Regards,
Verane.

Posted: Thu Jan 20, 2005 4:16 pm
by narcis
Hi Verane,

You have to make invisible left and bottom axes ticks grid either using the editor or run-time.

Code: Select all

tChart1.Axes.Bottom.Grid.Visible=false;
tChart1.Axes.Left.Grid.Visible=false;