How can I pad the top, left, bottom, and right walls of the chart so that my series do not touch those walls? I cannot zoom into locations where this occurs.
Thanks,
pk
Padding the Chart So Series Don't Touch Edge
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi pk,
Try using bottom and left axes offset:
Try using bottom and left axes offset:
Code: Select all
tChart1.Axes.Left.MinimumOffset = 30;
tChart1.Axes.Left.MaximumOffset = 30;
tChart1.Axes.Bottom.MinimumOffset = 30;
tChart1.Axes.Bottom.MaximumOffset = 30;
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 |