Hi,
How is it possible to hide horizontal and vertical lines that are drown by default under a chart ?
Regards,
Verane.
Hide horizontal and vertical lines ?
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Verane,
You have to make invisible left and bottom axes ticks grid either using the editor or run-time.
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 |
Instructions - How to post in this forum |