Padding the Chart So Series Don't Touch Edge

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
BMUser
Newbie
Newbie
Posts: 1
Joined: Thu Jun 19, 2008 12:00 am

Padding the Chart So Series Don't Touch Edge

Post by BMUser » Tue Nov 18, 2008 3:23 pm

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

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Tue Nov 18, 2008 3:49 pm

Hi pk,

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
Image Image Image Image Image Image
Instructions - How to post in this forum

Post Reply