Hello
i want to make in my graph X axis gridline as shown in picture with RedLine.Normally X axis gridline goes by 20 to 20.But i want it as goes 7 to 7 as showen in picture.
Tahnks
GridPreblem
-
- Newbie
- Posts: 25
- Joined: Thu Dec 27, 2007 12:00 am
GridPreblem
- Attachments
-
- Grid.JPG (102.66 KiB) Viewed 4588 times
Re: GridPreblem
Hello Solutions Gallery BV ,
I seem that you can use property of axes Increment and property of labels axes alternate, because grids go 7 to 7 as next lines of code:
Could you please, tell us it solution works as you want?
I hope will helps.
Thanks,
I seem that you can use property of axes Increment and property of labels axes alternate, because grids go 7 to 7 as next lines of code:
Code: Select all
tChart1.Axes.Bottom.Increment = 7;
tChart1.Axes.Bottom.Labels.Alternate = true;
Could you please, tell us it solution works as you want?
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: 25
- Joined: Thu Dec 27, 2007 12:00 am
Re: GridPreblem
Thanks for your responding.I think the code which you wrote is ok.It is as i wanted.