Hello,
When I plot data in the chart, the title name goes out of the chart and you can not read it.
The same happens with the variables or labels assigned to the axis.
Is there any way to make TeeChart to respect the text adapting the chart size to it in order to fit everything and make it readable?
Thank you.
Title names and axis variable names out of the chart with TeeChart for .Net
Title names and axis variable names out of the chart with TeeChart for .Net
- Attachments
-
- tChartMain.png (15.8 KiB) Viewed 11933 times
-
- image-20230620-123457.png (32.01 KiB) Viewed 11933 times
-
- Guru
- Posts: 1603
- Joined: Fri Nov 15, 2002 12:00 am
Re: Title names and axis variable names out of the chart with TeeChart for .Net
Hello,
By turning off a default speed optimization to stop the unnecessary recalculation of label sizes, I think you can achieve what you want, e.g.
Code: Select all
public Form1()
{
InitializeComponent();
var bar = new Bar(tChart1.Chart);
bar.Add(1, "A long label for bar one");
bar.Add(10, "A long label for bar one");
tChart1.Axes.Bottom.FixedLabelSize = false;
}
private void button1_Click(object sender, EventArgs e)
{
tChart1.Axes.Bottom.Labels.Angle = 45;
}
Best Regards,
Christopher Ireland / 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 |