Hide horizontal and vertical lines ?

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
Verane
Newbie
Newbie
Posts: 23
Joined: Thu Jan 09, 2003 5:00 am

Hide horizontal and vertical lines ?

Post by Verane » Thu Jan 20, 2005 4:02 pm

Hi,

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

Regards,
Verane.

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Thu Jan 20, 2005 4:16 pm

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;
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

Post Reply