Page 1 of 1

Bottom axis title overlaps with labels

Posted: Sun Nov 20, 2011 4:57 pm
by 13051032
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,

Re: Bottom axis title overlaps with labels

Posted: Tue Nov 22, 2011 11:34 am
by narcis
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.