I attach an image of a section of my chart.
As you can see, the TPointSeries draws an extra unwanted vertical grid line and the corresponding x-axis text that looks messy. How do I stop it from drawing the vertical grid line as well as adding the axis text?
extra vertical grid line
Re: extra vertical grid line
Hi superman007,
You could hide the bottom axis:
Or you could hide the grid lines and the labels separately:
You could hide the bottom axis:
Code: Select all
Chart1.Axes.Bottom.Visible:=false;
Code: Select all
Chart1.Axes.Bottom.Grid.Visible:=false;
Chart1.Axes.Bottom.Labels:=false;
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
-
- Newbie
- Posts: 3
- Joined: Tue Aug 25, 2009 12:00 am
Re: extra vertical grid line
That will get rid of all the grid lines. I don't want that. I want to only get rid of the grid line that is drawn for the TPointSeries (the "extra" grid line that you can see in the image that goes through the green arrow).
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: extra vertical grid line
Hi superman007,
To be able to provide an accurate answer, could you please attach a simple example project we can run "as-is" to reproduce the problem here?
Thanks in advance.
To be able to provide an accurate answer, could you please attach a simple example project we can run "as-is" to reproduce the problem here?
Thanks in advance.
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 |
-
- Newbie
- Posts: 3
- Joined: Tue Aug 25, 2009 12:00 am
Re: extra vertical grid line
I have fixed the issue by putting in a blank label into the AddXY function call.
Re: extra vertical grid line
Hi superman007,
Ah, I think I've understood what you wanted to do do. You only want to hide the label drawn at the TPointSeries.
I'm grad to see you've found the solution!
Ah, I think I've understood what you wanted to do do. You only want to hide the label drawn at the TPointSeries.
I'm grad to see you've found the solution!
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |