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
Axis labels and title overlapped
-
- Guru
- Posts: 1603
- Joined: Fri Nov 15, 2002 12:00 am
Re: Axis labels and title overlapped
Have you tried: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.
Code: Select all
tChart1.Axes.Left.FixedLabelSize = false;
Best Regards,
Christopher Ireland / 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 |
Re: Axis labels and title overlapped
Thanks! It is exactly what I'm looking for.