Axis
-
- Newbie
- Posts: 65
- Joined: Mon Jan 19, 2004 5:00 am
Axis
I want to remove the grid lines, which if I make the Axis.Vsible = false does this, but I still require the scale on the left hand side which is lost when I turn make visible = false
- Attachments
-
- RAL_488_AgeGraph.jpg (95.53 KiB) Viewed 8781 times
Re: Axis
Hello MikeTheLad,
If you want remove lines, I recommend that use property of Axis Grid.Visible = false as do in next line of code:
I hope will helps.
Thanks,
If you want remove lines, I recommend that use property of Axis Grid.Visible = false as do in next line of code:
Code: Select all
tChart1.Axes.Bottom.Grid.Visible = false;
Thanks,
Best Regards,
Sandra Pazos / 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: 65
- Joined: Mon Jan 19, 2004 5:00 am
Re: Axis
Thanks, this only does the vertical lines, I also need to loose the horizontal, have tried several option, none of which have worked
- Attachments
-
- RAL_488_AgeGraph.jpg (92.49 KiB) Viewed 8740 times
Re: Axis
Hello MikeTheLad,
You need do the same as you do with vertical lines of Grid. Please see next line of code:
Can you tell us if previous lines of Code works as you expected?
I hope will helps.
Thanks,
You need do the same as you do with vertical lines of Grid. Please see next line of code:
Code: Select all
tChart1.Axes.Left.Grid.Visible = false;
I hope will helps.
Thanks,
Best Regards,
Sandra Pazos / 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: 65
- Joined: Mon Jan 19, 2004 5:00 am
Re: Axis
Thanks, this is what I wanted