Bottom axis title overlaps with labels

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
asupriya
Advanced
Posts: 179
Joined: Mon Dec 01, 2008 12:00 am

Bottom axis title overlaps with labels

Post by asupriya » Sun Nov 20, 2011 4:57 pm

When I display bottom axis title, it gets overlapped with the values. How can I prevent it from such overlapping. I am using T-chart version 3.5.3498.27367.

Any help is greatly appreciated.

Thanks,

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

Re: Bottom axis title overlaps with labels

Post by Narcís » Tue Nov 22, 2011 11:34 am

Hi asupriya,

This doesn't occur using the code snippet below either with TeeChart .NET v3 nor v2011. Can you please modify it so that we can reproduce the problem here?

Code: Select all

      tChart1.Series.Add(new Steema.TeeChart.Styles.Bar());

      tChart1.Axes.Bottom.Title.Text = "Bottom axis title";
      tChart1.Axes.Bottom.Labels.Angle = 90;

      for (int i = 0; i < 5; i++)
      {
        tChart1[0].Add(i, "bar number " + i.ToString());
      }
Thanks in advance.
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