Axis title gets trimmed
Posted: Wed Aug 14, 2013 10:41 am
hi,
If I add a title to my left axis, where the title contains of multiple rows, the rows get cut off.
Here is my code:
See the attached screenshot for the result.
What can we do to make the title completely visible?
Thanks,
Marijke
If I add a title to my left axis, where the title contains of multiple rows, the rows get cut off.
Here is my code:
Code: Select all
tChart1.Axes.Left.Title.Text = "first row \n second row \n third row \n forth row \n fifth row";
Steema.TeeChart.Styles.Line line = new Steema.TeeChart.Styles.Line(tChart1.Chart);
line.Title = "Line series";
for (int i = 1; i <= 20; ++i)
{
line.Add(i);
}
What can we do to make the title completely visible?
Thanks,
Marijke