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,
Bottom axis title overlaps with labels
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: Bottom axis title overlaps with labels
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?
Thanks in advance.
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());
}
Best Regards,
Narcís Calvet / 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 |