Page 1 of 1

Padding the Chart So Series Don't Touch Edge

Posted: Tue Nov 18, 2008 3:23 pm
by 13049423
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

Posted: Tue Nov 18, 2008 3:49 pm
by narcis
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;