Page 1 of 1

Axis labels and title overlapped

Posted: Thu May 28, 2015 12:19 pm
by 15670421
Hello!

I created simple application with one chart and one line graph. When I fill line with some data everything seems to be good: http://prntscr.com/7ac3dw

But when I zoom in (with mouse) labels on left axis begin overlap axis title like this: http://prntscr.com/7ac3ba

Is it possible to update axis rectangle (by shrink chart or any other way) relying labels size? Same issue is observed when I increase labels font size.

Thanks,
Evgeny

Re: Axis labels and title overlapped

Posted: Thu May 28, 2015 3:19 pm
by Christopher
r4tz52 wrote:Is it possible to update axis rectangle (by shrink chart or any other way) relying labels size? Same issue is observed when I increase labels font size.
Have you tried:

Code: Select all

tChart1.Axes.Left.FixedLabelSize = false;

Re: Axis labels and title overlapped

Posted: Fri May 29, 2015 6:52 am
by 15670421
Thanks! It is exactly what I'm looking for.