Page 1 of 1

Vertical Overlapping X-Axis Labels, Title and TChart Footer

Posted: Tue Jan 25, 2005 11:08 pm
by 8126099
I have formatted my DateTime A-Axis as follows:
TChart1.Axes.Bottom.Labels.MultiLine = True
TChart1.Axes.Bottom.Labels.DateTimeFormat = "MM/dd/yy hh:mm"

TChart1.Axes.Bottom.Title.Text = "From Simulation Zero"
TChart1.Footer.Text = "Return Period"

Now - EVERTHING, the Hours of the DateTime, the Title.text and the Footer overlap VERTICALLY. I need to increase the vertical spacing on these properties. How do I do that?

I have seen the forums deal with Horizontal Overlaps. Please help.

Thanks.

Posted: Wed Jan 26, 2005 9:18 am
by Marjan
Hi.

The following might help:

Code: Select all

tChart1.Axes.Bottom.Labels.CustomSize = 30;

Posted: Wed Jan 26, 2005 2:24 pm
by 8126099
Yes. It did help. Thank you.